1
0
Fork 0
freesewing/packages/freesewing.shared/config/tailwind.config.js
2021-12-22 17:06:50 +01:00

29 lines
556 B
JavaScript

// Handle themes
const allThemes = require('../themes')
const themes = {}
for (const theme in allThemes) themes[theme] = allThemes[theme].config
module.exports = {
content: [
'./pages/*.js',
'./pages/**/*.js',
'../freesewing.shared/components/**/*.js',
],
plugins: [
require('daisyui'),
require('tailwindcss/nesting'),
],
daisyui: {
styled: true,
themes: [ themes ],
base: true,
utils: true,
logs: true,
rtl: false,
},
theme: {
extend: {
colors: require('daisyui/colors'),
},
},
}