
This is not exactly finished or ready for prime-time, but I do feel that leaving it in a feature branch longer will only cause the spread between the `develop` branch and this to grow. Given that I've taken care to not break the current site, I plan to merge this and then keep polishing things. Some views are not implemented yet, and overall there's a need to polish to limit the amount of re-renders and improve performance.
33 lines
687 B
JavaScript
33 lines
687 B
JavaScript
// Handle themes
|
|
import { themes } from '../themes/index.mjs'
|
|
|
|
export default {
|
|
content: [
|
|
'./pages/*.mjs',
|
|
'./pages/*.js',
|
|
'./pages/**/*.mjs',
|
|
'./pages/**/*.js',
|
|
'./components/*.mjs',
|
|
'./components/**/*.mjs',
|
|
'./page-templates/*.mjs',
|
|
'../shared/components/**/*.mjs',
|
|
'../shared/config/tailwind-force.html',
|
|
'../../packages/react-components/src/**/*.mjs',
|
|
],
|
|
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',
|
|
},
|
|
},
|
|
},
|
|
}
|