mirror of
https://github.com/dancojocaru2000/foxbank.git
synced 2025-02-23 06:09:34 +02:00
21 lines
372 B
JavaScript
21 lines
372 B
JavaScript
const production = !process.env.ROLLUP_WATCH;
|
|
module.exports = {
|
|
purge: {
|
|
content: [
|
|
"./src/**/*.svelte",
|
|
],
|
|
enabled: production,
|
|
},
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
future: {
|
|
purgeLayersByDefault: true,
|
|
removeDeprecatedGapUtilities: true,
|
|
},
|
|
}
|