19 lines
440 B
TypeScript
19 lines
440 B
TypeScript
import daisyui from "daisyui"
|
|
import typography from "@tailwindcss/typography"
|
|
import type { Config } from "tailwindcss"
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./src/**/*.{html,js,svelte,ts}",
|
|
"./node_modules/@tricoteuses/explorer-tools/**/*.{html,js,svelte,ts}",
|
|
"./node_modules/augmented-data-viewer/**/*.{html,js,svelte,ts}",
|
|
],
|
|
|
|
plugins: [typography, daisyui],
|
|
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
}
|
|
|
|
export default config
|