cloudPlat/frontend/tailwind.config.js

12 lines
207 B
JavaScript
Raw Normal View History

2025-07-09 22:44:18 +08:00
module.exports = {
content: ['./src/**/*.{vue,js,ts}', './index.html'],
theme: {
extend: {
colors: {
primary: '#1890ff',
secondary: '#f0f2f5'
}
}
},
plugins: []
}