All checks were successful
Rebuild signaller for deprived.dev to rebuild site / test_service (push) Successful in 22s
14 lines
289 B
JavaScript
14 lines
289 B
JavaScript
import typo from "@tailwindcss/typography";
|
|
import daisyui from "daisyui";
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [typo, daisyui],
|
|
daisyui: {
|
|
themes: ["forest"],
|
|
},
|
|
};
|