19 lines
330 B
JavaScript
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
|
|
}
|
|
}
|