
Refer to the CHANGELOG for all info. --------- Co-authored-by: Wouter van Wageningen <wouter.vdub@yahoo.com> Co-authored-by: Josh Munic <jpmunic@gmail.com> Co-authored-by: Jonathan Haas <haasjona@gmail.com>
30 lines
749 B
JavaScript
30 lines
749 B
JavaScript
// Handle themes
|
|
import { light, dark } from './themes/index.mjs'
|
|
import daisyui from 'daisyui'
|
|
|
|
export default {
|
|
content: [
|
|
'./src/**/*.{js,mjs,mdx}',
|
|
'./node_modules/daisyui/**/*.{js,mjs,ts,tsx}',
|
|
'./node_modules/@freesewing/react/components/**/*.mjs',
|
|
'./node_modules/@freesewing/react/context/**/*.mjs',
|
|
'./node_modules/@freesewing/react/hooks/**/*.mjs',
|
|
'./node_modules/@freesewing/react/lib/tailwind-force.mjs',
|
|
'./node_modules/@freesewing/utils/src/*.mjs',
|
|
'./tailwind-force.html',
|
|
],
|
|
plugins: [daisyui],
|
|
prefix: 'tw-',
|
|
daisyui: {
|
|
themes: [{ dark, light }],
|
|
logs: true,
|
|
prefix: 'daisy-',
|
|
},
|
|
theme: {
|
|
extend: {
|
|
aspectRatio: {
|
|
'9/16': '9 / 16',
|
|
},
|
|
},
|
|
},
|
|
}
|