跳转至

VuePress添加评论

安装插件

pnpm i -D @vuepress/plugin-comment@next

开启

打开theme.js

plugins: {
 comment: {
      provider: "Giscus",
      // serverURL: "https://waline-comment.vuejs.press",
      repo: "xxxx", // 对应giscus的 data-repo
      repoId: "xxx",// 对应giscus的 data-repo-id
      category: "xxx",// 对应giscus的 data-category
      categoryId: "xxx"// 对应giscus的 data-category-id
    },
}

更多参考: https://theme-hope.vuejs.press/zh/guide/feature/comment.html

评论