12 lines
207 B
JavaScript
12 lines
207 B
JavaScript
module.exports = {
|
|
content: ['./src/**/*.{vue,js,ts}', './index.html'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#1890ff',
|
|
secondary: '#f0f2f5'
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
}
|