Skip to content

Commit c3810b4

Browse files
committed
feat: add blog rendering components and update dependencies
- Updated package.json to include @astrojs/mdx and @tailwindcss/typography.
1 parent e74335a commit c3810b4

File tree

8 files changed

+876
-21
lines changed

8 files changed

+876
-21
lines changed

astro.config.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ import tailwindcss from "@tailwindcss/vite";
44

55
import icon from "astro-icon";
66

7+
import mdx from "@astrojs/mdx";
8+
79
// https://astro.build/config
810
export default defineConfig({
911
vite: {
1012
plugins: [tailwindcss()],
1113
},
1214

13-
integrations: [icon()],
15+
integrations: [icon(), mdx()],
1416
});

0 commit comments

Comments
 (0)