我的主要参考借鉴了:Twikoo 评论系统相关教程

在搭建的过程中我遇到的一些问题:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
comments:
# Up to two comments system, the first will be shown as default
# Choose: Disqus/Disqusjs/Livere/Gitalk/Valine/Waline/Utterances/Facebook Comments/Twikoo/Giscus/Remark42/Artalk
use: Twikoo # Valine,Disqus
text: true # Display the comment name next to the button
# lazyload: The comment system will be load when comment element enters the browser's viewport.
# If you set it to true, the comment count will be invalid
lazyload: false
count: false # Display comment count in post's top_img
card_post_count: false # Display comment count in Home Page

# Twikoo
# https://github.com/imaegoo/twikoo
twikoo:
envId: https://twikoo.yolus.top/
region: ap-shanghai
visitor: false
option:

在填写自己twikoo的envId时,最开始填写的是自己通过vercel绑定的域名twikoo.yolus.top出现问题页面只显示Comment,并没有下面的twikoo的评论系统框。

图片

最后发现使用vercel自带的域名是可以解决这个问题,那就说明时我的解析域名遇到了问题,但是在浏览器中却是可以正常访问的

在最后是因为没有加http://导致无法访问到,O.o????

最后将envId改为envId: https://twikoo.yolus.top/即可正常访问ovo

图片