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