
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.
23 lines
459 B
JavaScript
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',
|
|
},
|
|
},
|
|
},
|
|
}
|