heroweb/svelte/auth/tailwind.config.ts

12 lines
202 B
TypeScript
Raw Normal View History

2024-09-13 13:00:11 +00:00
import type { Config } from "tailwindcss";
export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {}
},
plugins: [require("@tailwindcss/typography")]
} as Config;