16 lines
244 B
JavaScript
16 lines
244 B
JavaScript
|
module.exports = {
|
||
|
future: {
|
||
|
removeDeprecatedGapUtilities: true,
|
||
|
purgeLayersByDefault: true
|
||
|
},
|
||
|
purge: ['./src/**/*.html', './src/**/*.vue'],
|
||
|
theme: {
|
||
|
extend: {}
|
||
|
},
|
||
|
variants: {},
|
||
|
corePlugins: {
|
||
|
preflight: false
|
||
|
},
|
||
|
plugins: []
|
||
|
}
|