JinZHouXiYiJi_DaPin2/tailwind.config.js

24 lines
409 B
JavaScript
Raw Permalink Normal View History

2023-12-05 13:23:01 +08:00
module.exports = {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
'./examples/**/*.{vue,js,ts,jsx,tsx}',
'./docs/**/*.{vue,js,ts,jsx,tsx}'
],
theme: {
extend: {}
},
corePlugins: {
preflight: true
},
plugins: [
function ({ addBase }) {
addBase({
'.n-button': {
'background-color': 'var(--n-color);'
}
})
}
]
}