Files
website/astro.config.mjs

28 lines
642 B
JavaScript
Raw Permalink Normal View History

2024-05-14 00:01:06 +01:00
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
2025-01-05 00:41:05 +00:00
import remarkMath from "remark-math";
import rehypeKatex from "rehype-katex";
2024-03-09 22:41:35 +00:00
2025-08-03 23:02:35 +01:00
import tailwindcss from "@tailwindcss/vite";
2024-03-09 22:41:35 +00:00
// https://astro.build/config
export default defineConfig({
2024-05-14 00:01:06 +01:00
site: "https://kennethnym.com",
2025-08-03 23:02:35 +01:00
integrations: [mdx(), sitemap()],
2024-05-14 00:01:06 +01:00
markdown: {
shikiConfig: {
// Choose from Shiki's built-in themes (or add your own)
// https://shiki.style/themes
theme: "catppuccin-mocha",
},
2025-01-05 00:41:05 +00:00
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
2024-05-14 00:01:06 +01:00
},
2025-08-03 23:02:35 +01:00
vite: {
plugins: [tailwindcss()],
},
2024-05-14 00:01:06 +01:00
});