Files
1818uniapp/tailwind.config.js
2026-02-13 17:36:42 +08:00

19 lines
330 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{vue,js,ts}'],
theme: {
extend: {
colors: {
primary: '#1890ff',
success: '#52c41a',
warning: '#faad14',
error: '#ff4d4f'
}
}
},
plugins: [],
corePlugins: {
preflight: false
}
}