2021-11-14 15:13:40 +02:00
|
|
|
const production = !process.env.ROLLUP_WATCH;
|
|
|
|
module.exports = {
|
|
|
|
purge: {
|
|
|
|
content: [
|
|
|
|
"./src/**/*.svelte",
|
|
|
|
],
|
|
|
|
enabled: production,
|
|
|
|
},
|
|
|
|
darkMode: false, // or 'media' or 'class'
|
|
|
|
theme: {
|
2021-11-14 17:35:37 +02:00
|
|
|
extend: {
|
|
|
|
backgroundImage:{
|
|
|
|
"banner":"url('/img/Banner.jpg')"
|
2021-11-14 19:07:05 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
fontFamily:{
|
|
|
|
"title":['Geo', 'sans-serif'],
|
|
|
|
"welcome":['Rochester', 'cursive'],
|
|
|
|
"sans":['Roboto', 'sans-serif']
|
|
|
|
},
|
2021-11-14 17:35:37 +02:00
|
|
|
},
|
2021-11-14 15:13:40 +02:00
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
future: {
|
|
|
|
purgeLayersByDefault: true,
|
|
|
|
removeDeprecatedGapUtilities: true,
|
|
|
|
},
|
|
|
|
}
|