yunohost-portal/tailwind.config.js

14 lines
220 B
JavaScript
Raw Normal View History

2023-07-12 04:52:58 +02:00
module.exports = {
// Safelisting some classes to avoid content purge
2023-07-23 22:09:51 +02:00
plugins: [require('daisyui')],
2023-07-12 04:52:58 +02:00
safelist: [
'safelisted',
{
pattern: /bg-.*-500/,
},
2023-07-19 18:42:05 +02:00
],
2023-07-23 22:09:51 +02:00
daisyui: {
themes: true,
}
2023-07-12 04:52:58 +02:00
}