1
0
Fork 0
freesewing/packages/new-design/shared/tailwind.config.js

33 lines
628 B
JavaScript
Raw Normal View History

// Handle themes
const themes = require('./shared/themes/index.js')
module.exports = {
content: [
2023-02-05 18:54:48 +01:00
'./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: {
2023-02-05 18:54:48 +01:00
'9/16': '9 / 16',
},
},
},
}