2024-11-18 11:05:16 +01:00
|
|
|
// Handle themes
|
|
|
|
import { themes } from './themes/index.mjs'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
content: ['./src/*.js', './src/**/*.js', './src/*.mjs', './src/**/*.mjs'],
|
|
|
|
plugins: [require('daisyui'), require('tailwindcss/nesting')],
|
2024-11-23 17:50:17 +01:00
|
|
|
corePlugins: { preflight: false },
|
2024-11-18 11:05:16 +01:00
|
|
|
daisyui: {
|
|
|
|
themes: [themes],
|
|
|
|
styled: true,
|
|
|
|
base: true,
|
|
|
|
utils: true,
|
|
|
|
logs: true,
|
|
|
|
rtl: false,
|
|
|
|
themeRoot: '*',
|
|
|
|
},
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
aspectRatio: {
|
|
|
|
'9/16': '9 / 16',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|