deblan.io-murph/tailwind.config.js

22 lines
328 B
JavaScript
Raw Normal View History

2022-09-25 18:06:39 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./assets/**/*.js",
"./templates/**/*.html.twig",
],
theme: {
2022-09-25 22:50:37 +02:00
extend: {
},
2022-09-25 18:06:39 +02:00
},
2022-09-25 20:43:24 +02:00
plugins: [
require("daisyui"),
require('@tailwindcss/typography'),
],
2022-09-25 18:06:39 +02:00
daisyui: {
2022-09-25 22:50:37 +02:00
themes: [
"light",
"dark",
],
2022-09-25 18:06:39 +02:00
},
}