mirror of
https://gitlab.com/mickie1/share-freedom-extension
synced 2025-02-16 17:10:41 +01:00
15 lines
240 B
JavaScript
15 lines
240 B
JavaScript
// tailwind.config.js
|
|
module.exports = {
|
|
purge: ['./public/*.html'],
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
variants: {
|
|
extend: {
|
|
backgroundColor: ['active'],
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|