1
0
Fork 0
freesewing/sites/orgdocs/tailwind.config.mjs
Joost De Cock 469eb43c95
feat: Add various content types to docusaurus (#7231)
This brings blog posts, showcase posts, and newsletter editions into the Docusaurus site.

It also adds support for using TailwindCSS inside a container. So this will probably end up being the new freesewing.org site in v4.
2024-11-18 11:05:16 +01:00

23 lines
459 B
JavaScript

// Handle themes
import { themes } from './themes/index.mjs'
export default {
content: ['./src/*.js', './src/**/*.js', './src/*.mjs', './src/**/*.mjs'],
plugins: [require('daisyui'), require('tailwindcss/nesting')],
daisyui: {
themes: [themes],
styled: true,
base: true,
utils: true,
logs: true,
rtl: false,
themeRoot: '*',
},
theme: {
extend: {
aspectRatio: {
'9/16': '9 / 16',
},
},
},
}