15 lines
350 B
JavaScript
15 lines
350 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./vendor/tales-from-a-dev/flowbite-bundle/templates/**/*.html.twig",
|
||
|
"./assets/**/*.js",
|
||
|
"./templates/**/*.html.twig",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [
|
||
|
require('flowbite/plugin')
|
||
|
],
|
||
|
darkMode: 'media',
|
||
|
}
|