Website/app/tailwind.config.js

14 lines
239 B
JavaScript
Raw Normal View History

2024-07-14 14:26:52 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2024-07-20 06:38:12 +00:00
content: [
"./frontend/**/*.ts",
"./frontend/templates/**/*.html.twig",
],
theme: {
extend: {
2024-07-14 14:26:52 +00:00
2024-07-20 06:38:12 +00:00
},
2024-07-14 14:26:52 +00:00
},
2024-07-20 06:38:12 +00:00
darkMode: 'selector'
2024-07-14 14:26:52 +00:00
}