Files
zn-ai/tailwindcss.config.ts
2025-09-24 17:15:02 +08:00

9 lines
205 B
TypeScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/renderer/index.html', './src/**/*.{vue,js,ts,jsx,tsx}'], // 包含的内容
theme: {
extend: {}
},
plugins: []
}