19 lines
336 B
JavaScript
19 lines
336 B
JavaScript
// tailwind.config.js
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./components/**/*.{js,vue,ts}',
|
|
'./layouts/**/*.vue',
|
|
'./pages/**/*.vue',
|
|
'./plugins/**/*.{js,ts}',
|
|
'./app.vue',
|
|
'./error.vue'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
// 自定义主题配置
|
|
}
|
|
},
|
|
plugins: []
|
|
}
|