feat: add fediverse comments server render mode support

This commit is contained in:
grassblock 2025-05-10 23:28:59 +08:00
parent 9559abd0aa
commit 30cdde0fc2
6 changed files with 983 additions and 90 deletions

View file

@ -4,6 +4,8 @@ import sitemap from '@astrojs/sitemap';
import mdx from '@astrojs/mdx';
import cloudflare from '@astrojs/cloudflare';
export default defineConfig({
site: 'https://terminal-blog.example.com',
base: '/',
@ -20,5 +22,7 @@ export default defineConfig({
}
},
integrations: [sitemap(), mdx()]
integrations: [sitemap(), mdx()],
adapter: cloudflare()
});