condividi-link-fediverso-fi.../tailwind.config.js

15 lines
240 B
JavaScript
Raw Permalink Normal View History

2021-04-06 10:44:53 +02:00
// tailwind.config.js
module.exports = {
2021-08-18 06:57:59 +02:00
purge: ['./public/*.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {
backgroundColor: ['active'],
2021-04-06 10:44:53 +02:00
},
2021-08-18 06:57:59 +02:00
},
plugins: [],
};