SanYeCao-blog/astro.config.mjs

36 lines
811 B
JavaScript
Raw Normal View History

2026-03-24 14:19:09 +00:00
// @ts-check
import { defineConfig } from 'astro/config';
2026-03-25 15:26:22 +00:00
import sitemap from "@astrojs/sitemap";
import svelte from "@astrojs/svelte";
2026-04-13 17:59:08 +00:00
import rehypeMermaid from "rehype-mermaid";
2026-06-01 09:50:06 +00:00
import remarkMath from "remark-math";
import rehypeKatex from "rehype-katex";
2026-03-24 14:19:09 +00:00
// https://astro.build/config
2026-03-24 17:33:01 +00:00
import { fileURLToPath } from 'node:url'
export default defineConfig({
vite: {
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
},
2026-03-25 07:25:40 +00:00
site: "https://blog.cloverta.top",
redirects: {
"/": "/zh",
},
integrations: [sitemap(), svelte()],
2026-04-13 17:59:08 +00:00
markdown: {
2026-04-14 10:30:40 +00:00
syntaxHighlight: {
type: 'shiki',
excludeLangs: ['mermaid', 'math'],
},
2026-06-01 09:50:06 +00:00
rehypePlugins: [
rehypeMermaid,
rehypeKatex,
],
remarkPlugins: [remarkMath],
2026-04-13 17:59:08 +00:00
},
2026-03-24 17:33:01 +00:00
})