19 lines
310 B
JavaScript
19 lines
310 B
JavaScript
module.exports = {
|
|
// mode:'jit',
|
|
content: [
|
|
// Example content paths...
|
|
'./index.html',
|
|
'./public/**/*.html',
|
|
'./src/**/*.{js,jsx,ts,tsx,vue}',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
// ...
|
|
// preflight: false,
|
|
// backgroundOpacity: false,
|
|
},
|
|
}
|