个人博客还闭麦?vuepress theme hope 使用 giscus 的评论功能和友仔友女聊天
298 字小于 1 分钟2024年11月19日
原理
原理为 github 的 discussions
为博客启用评论
创建一个公开仓库
首先创建一个公开仓库,用于存放评论。
然后在仓库设置里 setup discussions。
获取 giscus
在生成的 script 标签里获取 repo, repoId, category, categoryId
博客配置
在 config.js
里配置
theme: hopeTheme({
plugins: {
comment: {
provider: "Giscus",
repo: "",
repoId: "",
category: "",
categoryId: "",
mapping: "",
},
},
});