tricoteuses-legifrance/tailwind.config.cjs

19 lines
402 B
JavaScript
Raw Normal View History

2022-08-09 10:44:30 +02:00
const daisyui = require("daisyui")
const typography = require("@tailwindcss/typography")
const config = {
2022-08-10 17:50:13 +02:00
content: [
"./src/**/*.{html,js,svelte,ts}",
2022-08-20 19:36:21 +02:00
"./node_modules/@tricoteuses/explorer-tools/**/*.{html,js,svelte,ts}",
2022-08-10 17:50:13 +02:00
"./node_modules/augmented-data-viewer/**/*.{html,js,svelte,ts}",
],
2022-08-09 10:44:30 +02:00
theme: {
extend: {},
},
2022-08-09 10:44:30 +02:00
plugins: [typography, daisyui],
}
2022-08-09 10:44:30 +02:00
module.exports = config