tailwind.config.js 262 字节
Newer Older
1 2 3 4
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./index.html",
5
    "./src/*.{vue,js,ts,jsx,tsx}",
6 7 8 9 10
    "./src/**/*.{vue,js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {},
  },
11 12 13
  plugins: [
    require('@tailwindcss/forms'),
  ],
14 15
}