/** @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 } }