vitepress搭建的博客系统cdn引入github discussions评论系统

github仓库必须是公开的

按照CDN的方式引入

打开discussions模块

安装giscus app


配置giscus

就是刚安装了giscus app的仓库

页面往下走,生成了代码:

配置vitepress

采用了CDN的方式引入

使用web component

随便找个地方试试组件

效果

有了

优化

那么多页面,一个一个的添加评论组件不现实。封装个评论组件覆盖原来的vitepress layout

  1. 在.vitepress目录下的theme目录下创建组件
html 复制代码
<!-- Layout.vue -->
<template>
  <Layout>
    <template #doc-after>
      <giscus-widget
        id="comments"
        repo="chergn/questions"
        repoid=""
        category="Announcements"
        categoryid=""
        mapping="title"
        term="Welcome to giscus!"
        reactionsenabled="1"
        emitmetadata="0"
        inputposition="top"
        theme="light"
        lang="en"
        loading="lazy"
      ></giscus-widget>
    </template>
  </Layout>
</template>

<script lang="ts" setup>
import DefaultTheme from "vitepress/theme";
const { Layout } = DefaultTheme;
</script>
  1. 在.vitepress目录下的theme目录下的index.js文件配置layout
javascript 复制代码
import DefaultTheme from 'vitepress/theme'
import CommentLayout from './CommentLayout.vue'

export default {
  extends: DefaultTheme,
  // 使用注入插槽的包装组件覆盖 Layout
  Layout: CommentLayout
}

有了这两文件就好了

相关推荐
静心问道7 小时前
我这不需要保留本地修改, 只需要拉取远程更改
github
芝麻酱堂8 小时前
xcrun: error: invalid active developer path 解决
github
TE-茶叶蛋11 小时前
啥!GitHub Copilot也免费使用了
github·copilot
多多*1 天前
后端技术选型 sa-token校验学习 下 结合项目学习 前后端登录
java·redis·git·学习·github·intellij-idea·状态模式
微臣愚钝1 天前
【git】-3 github创建远程仓库,上传自己的项目,下载别人的项目
git·github
Burt1 天前
开源项目常用工具对比:(二)lint-staged VS nano-staged
前端·github
草梅友仁1 天前
2025 年第 2 周草梅周报:Hexo 播客生成与赞助者列表聚合
github·hexo·播客
小华同学ai2 天前
MineAdmin:试过之后才发现,CMS、CRM、OA、ERP,这些系统它都能快速实现,一款基于Hyperf框架和Vue3+Vite5 开发的前后端分离权限管
程序员·github
油泼辣子多加2 天前
2025年01月11日Github流行趋势
github
天天进步20152 天前
Github Actions和Docker实现自动部署
docker·容器·github