1
0
Fork 0
freesewing/packages/studio/template/tailwind.config.mjs
Joost De Cock 51dc1d9732
[breaking]: FreeSewing v4 (#7297)
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>
2025-04-01 16:15:20 +02:00

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',
},
},
},
}