forked from MapComplete/MapComplete
397a4414f3
As it turns out, the config does work once you restart the server … 🤦
21 lines
318 B
JavaScript
21 lines
318 B
JavaScript
module.exports = {
|
|
purge: [
|
|
// './**/*.html',
|
|
// './**/*.js',
|
|
],
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
extend: {
|
|
maxHeight: {
|
|
'65vh': '65vh',
|
|
'20vh': '20vh',
|
|
},
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {
|
|
ringColor: ['hover'],
|
|
}
|
|
},
|
|
plugins: [],
|
|
}
|