blog/astro.config.ts

49 lines
1.3 KiB
TypeScript
Raw Normal View History

2023-08-31 03:47:22 +00:00
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
2023-10-04 14:16:04 +00:00
import { rehypeAccessibleEmojis } from "rehype-accessible-emojis";
2023-09-01 15:09:01 +00:00
import remarkReadingTime from "./plugin/remark-reading-time";
2024-04-06 02:52:20 +00:00
import remarkEmoji from "remark-emoji";
2023-09-01 00:10:20 +00:00
import remarkMermaid from "astro-diagram/remark-mermaid";
2023-09-01 12:59:21 +00:00
import remarkDescription from "astro-remark-description";
2023-09-01 15:09:01 +00:00
import remarkAdmonitions from "./plugin/remark-admonitions";
2023-09-01 17:05:29 +00:00
import remarkMath from "remark-math";
import rehypeKatex from "rehype-katex";
2024-04-05 15:34:32 +00:00
import remarkTypst from "./plugin/remark-typst";
2024-05-02 20:06:10 +00:00
import rehypeLinkHeadings from "@justfork/rehype-autolink-headings";
import rehypeSlug from "rehype-slug";
2023-08-31 03:47:22 +00:00
2024-05-02 20:06:10 +00:00
import markdoc from "@astrojs/markdoc";
2023-10-11 16:48:34 +00:00
2023-08-31 03:47:22 +00:00
// https://astro.build/config
export default defineConfig({
2024-05-02 20:06:10 +00:00
site: "https://mzhang.io",
integrations: [mdx(), sitemap(), markdoc()],
markdown: {
syntaxHighlight: "shiki",
shikiConfig: {
theme: "css-variables",
},
remarkPlugins: [
remarkMath,
remarkAdmonitions,
remarkReadingTime,
remarkTypst,
remarkMermaid,
remarkEmoji,
[
remarkDescription,
{
name: "excerpt",
},
],
],
rehypePlugins: [
[rehypeKatex, {}],
rehypeAccessibleEmojis,
rehypeSlug,
[rehypeLinkHeadings, { behavior: "wrap" }],
],
},
2023-08-31 03:47:22 +00:00
});