用 Markdoc 而非 Markdown 渲染博客,以在未来支持自定义元素
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-03-27 17:06:03 +08:00
parent bc5247ddc8
commit 4c5abe8b01
10 changed files with 1582 additions and 32 deletions

View File

@ -5,11 +5,15 @@ import node from '@astrojs/node'
import svelte from '@astrojs/svelte'
import vue from '@astrojs/vue';
import react from '@astrojs/react';
// https://astro.build/config
export default defineConfig({
adapter: node({
mode: 'standalone',
}),
integrations: [svelte()],
})
integrations: [svelte(), vue(), react()],
})