配置 Waline 评论

This commit is contained in:
2025-09-29 08:39:59 -04:00
parent d831135553
commit 8eb832de6c
4 changed files with 117 additions and 32 deletions

View File

@@ -1,6 +1,7 @@
import { defineUserConfig } from 'vuepress'
import { plumeTheme } from 'vuepress-theme-plume'
import { viteBundler } from '@vuepress/bundler-vite'
import { commentPlugin } from '@vuepress/plugin-comment'
export default defineUserConfig({
base: '/',
@@ -62,4 +63,13 @@ export default defineUserConfig({
git: true
}
}),
plugins: [
commentPlugin({
provider: 'Waline',
serverURL: 'https://vercel.simengweb.com',
meta: ['nick'],
requiredMeta: ['nick']
}),
],
})