2022-08-09 10:44:30 +02:00
|
|
|
const daisyui = require("daisyui")
|
|
|
|
const typography = require("@tailwindcss/typography")
|
2022-08-09 10:23:20 +02:00
|
|
|
|
2023-07-19 11:45:22 +02:00
|
|
|
/** @type {import('tailwindcss').Config}*/
|
2022-08-09 10:23:20 +02:00
|
|
|
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: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
|
|
|
|
2022-08-09 10:44:30 +02:00
|
|
|
module.exports = config
|