32 lines
628 B
JavaScript
32 lines
628 B
JavaScript
// Handle themes
|
|
const themes = require('./shared/themes/index.js')
|
|
|
|
module.exports = {
|
|
content: [
|
|
'./pages/*.mjs',
|
|
'./pages/**/*.mjs',
|
|
'./shared/**/*.mjs',
|
|
'./lab/**/*.mjs',
|
|
// Legacy stuff, to be removed once everything is .mjs
|
|
'./pages/*.js',
|
|
'./pages/**/*.js',
|
|
'./shared/**/*.js',
|
|
'./lab/**/*.js',
|
|
],
|
|
plugins: [require('daisyui'), require('tailwindcss/nesting')],
|
|
daisyui: {
|
|
styled: true,
|
|
themes: [themes],
|
|
base: true,
|
|
utils: true,
|
|
logs: true,
|
|
rtl: false,
|
|
},
|
|
theme: {
|
|
extend: {
|
|
aspectRatio: {
|
|
'9/16': '9 / 16',
|
|
},
|
|
},
|
|
},
|
|
}
|