12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
|
import type { Config } from "tailwindcss";
|
||
|
|
||
|
export default {
|
||
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
||
|
|
||
|
theme: {
|
||
|
extend: {}
|
||
|
},
|
||
|
|
||
|
plugins: [require("@tailwindcss/typography")]
|
||
|
} as Config;
|