mirror of
https://github.com/dancojocaru2000/foxbank.git
synced 2025-02-23 12:29:35 +02:00
31 lines
604 B
JavaScript
31 lines
604 B
JavaScript
const production = !process.env.ROLLUP_WATCH;
|
|
module.exports = {
|
|
purge: {
|
|
content: [
|
|
"./src/**/*.svelte",
|
|
],
|
|
enabled: production,
|
|
},
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
extend: {
|
|
backgroundImage:{
|
|
"banner":"url('/img/Banner.jpg')"
|
|
},
|
|
|
|
fontFamily:{
|
|
"title":['Geo', 'sans-serif'],
|
|
"welcome":['Rochester', 'cursive'],
|
|
"sans":['Roboto', 'sans-serif']
|
|
},
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
future: {
|
|
purgeLayersByDefault: true,
|
|
removeDeprecatedGapUtilities: true,
|
|
},
|
|
}
|