yunohost-portal/tailwind.config.js

23 lines
400 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')],
safelist: [
'safelisted',
'bg-primary',
'bg-secondary',
'bg-accent',
'bg-neutral',
'bg-base-100',
'bg-base-200',
'bg-base-300',
'bg-base-content',
'bg-info',
'bg-success',
'bg-warning',
'bg-error',
],
2023-07-23 22:09:51 +02:00
daisyui: {
themes: true,
2023-07-25 22:22:59 +02:00
},
2023-07-12 04:52:58 +02:00
}