tricoteuses-legifrance/tailwind.config.cjs

20 lines
445 B
JavaScript
Raw Normal View History

2022-08-09 10:44:30 +02:00
const daisyui = require("daisyui")
const typography = require("@tailwindcss/typography")
2023-07-19 11:45:22 +02:00
/** @type {import('tailwindcss').Config}*/
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}",
],
2023-01-31 16:12:09 +01:00
plugins: [typography, daisyui],
2022-08-09 10:44:30 +02:00
theme: {
extend: {},
},
}
2022-08-09 10:44:30 +02:00
module.exports = config