Skip to content

使用giscus给博客添加评论

219 字小于 1 分钟

githubgiscus

2024-12-21

  1. 在github中安装giscus
  2. 选择一个公开的仓库作为评论存放的地方(可以选择一个新的仓库)
  3. 在仓库 => Settings => General => 勾选Discussions
  4. giscus官网中检测是否满足条件,并找到四个关键参数。
图片1图片2图片3
  1. 在主题中配置属性
config.ts
import { defineUserConfig } from 'vuepress'
import { plumeTheme } from 'vuepress-theme-plume'

export default defineUserConfig({
  theme: plumeTheme({
    plugins: {
      comment: {
        provider: 'Giscus', // "Artalk" | "Giscus" | "Twikoo" | "Waline"
        comment: true,
        repo: '复制的1',
        repoId: '复制的2',
        category: "复制的3",
        categoryId: '复制的4',
        mapping: 'pathname',
        reactionsEnabled: true,
        inputPosition: 'bottom',
      }
    }
  })
})

更多评论服务提供商及使用