ct/tailwind.config.js
2025-09-29 14:45:33 +08:00

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: []
}