2024-09-16 11:14:06 +02:00
|
|
|
import daisyui from "daisyui"
|
|
|
|
import typography from "@tailwindcss/typography"
|
|
|
|
import type { Config } from "tailwindcss"
|
2022-08-09 10:23:20 +02:00
|
|
|
|
2024-09-16 11:14:06 +02:00
|
|
|
const config: 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:23:20 +02:00
|
|
|
|
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:23:20 +02:00
|
|
|
|
2024-09-16 11:14:06 +02:00
|
|
|
export default config
|