| 12345678910111213141516171819 |
- module.exports = {
- content: [
- './index.html',
- './src/**/*.{vue,js,ts,jsx,tsx}',
- '../../packages/shared-components/src/**/*.{vue,js,ts,jsx,tsx}'
- ],
- theme: {
- extend: {
- colors: {
- primary: '#1e3a5f',
- accent: '#f5a623'
- }
- }
- },
- // 与Ant Design Vue兼容配置
- corePlugins: {
- preflight: false // 禁用TailwindCSS的基础样式重置,避免与Ant Design冲突
- }
- };
|