Fix imports issue with typography

This commit is contained in:
Jake Runyan 2026-03-16 15:05:55 -07:00
parent 3e71f6accd
commit 828e42e1ef

View File

@ -1,4 +1,5 @@
import type { Config } from "tailwindcss";
import typography from "@tailwindcss/typography";
export default {
content: [
@ -13,5 +14,5 @@ export default {
},
},
},
plugins: [require("@tailwindcss/typography")],
plugins: [typography],
} satisfies Config;