system-pri/frontend/tailwind.config.js

11 lines
170 B
JavaScript
Raw Normal View History

2022-05-22 21:28:25 +02:00
module.exports = {
2022-06-04 21:03:40 +02:00
content: ['./src/**/*.{js,jsx,ts,tsx}'],
2022-05-22 21:28:25 +02:00
theme: {
extend: {},
},
2022-10-27 23:36:49 +02:00
daisyui: {
themes: ['light'],
},
2022-06-04 21:03:40 +02:00
plugins: [require('daisyui')],
2022-05-22 21:28:25 +02:00
}