19 lines
445 B
JavaScript
19 lines
445 B
JavaScript
const daisyui = require("daisyui")
|
|
const typography = require("@tailwindcss/typography")
|
|
|
|
/** @type {import('tailwindcss').Config}*/
|
|
const 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: {},
|
|
},
|
|
}
|
|
|
|
module.exports = config
|