23 lines
538 B
Twig
23 lines
538 B
Twig
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'../../config/**/*.yaml',
|
|
'../../pages/**/*.md',
|
|
'./blueprints/**/*.yaml',
|
|
'./js/**/*.js',
|
|
'./templates/**/*.twig',
|
|
'./{{ component.name|hyphenize }}.yaml',
|
|
'./{{ component.name|hyphenize }}.php'
|
|
],
|
|
darkMode: 'class', //false or 'media' or 'class'
|
|
theme: {},
|
|
variants: {
|
|
extend: {}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
require('@tailwindcss/typography'),
|
|
require('tailwindcss-debug-screens')
|
|
]
|
|
}
|