diff --git a/blog.config.js b/blog.config.js
index d9cde76683a..2e5028e152f 100644
--- a/blog.config.js
+++ b/blog.config.js
@@ -119,7 +119,7 @@ const BLOG = {
COMMENT_VALINE_SERVER_URLS: process.env.NEXT_PUBLIC_VALINE_SERVER_URLS || '', // 该配置适用于国内自定义域名用户, 海外版本会自动检测(无需手动填写) @see https://valine.js.org/configuration.html#serverURLs
COMMENT_VALINE_PLACEHOLDER: process.env.NEXT_PUBLIC_VALINE_PLACEHOLDER || '抢个沙发吧~', // 可以搭配后台管理评论 https://github.com/DesertsP/Valine-Admin 便于查看评论,以及邮件通知,垃圾评论过滤等功能
- COMMENT_WALINE_SERVER_URL: process.env.NEXT_PUBLIC_WALINE_SERVER_URL || '', // Waline 评论 @see https://waline.js.org/guide/get-started.html
+ COMMENT_WALINE_SERVER_URL: process.env.NEXT_PUBLIC_WALINE_SERVER_URL || '', // 请配置完整的Waline评论地址 例如 hhttps://preview-waline.tangly1024.com @see https://waline.js.org/guide/get-started.html
COMMENT_WALINE_RECENT: process.env.NEXT_PUBLIC_WALINE_RECENT || false, // 最新评论
// 站点统计
diff --git a/themes/hexo/components/PaginationNumber.js b/themes/hexo/components/PaginationNumber.js
index 811db406f2a..fba781e2fc3 100644
--- a/themes/hexo/components/PaginationNumber.js
+++ b/themes/hexo/components/PaginationNumber.js
@@ -13,7 +13,6 @@ const PaginationNumber = ({ page, totalPage }) => {
const currentPage = +page
const showNext = page < totalPage
const pagePrefix = router.asPath.replace(/\/page\/[1-9]\d*/, '').replace(/\/$/, '')
- console.log('哈哈', pagePrefix, page, currentPage, totalPage)
const pages = generatePages(pagePrefix, page, currentPage, totalPage)
return (
diff --git a/themes/next/components/PaginationNumber.js b/themes/next/components/PaginationNumber.js
index f786c853071..764e3eb42e8 100644
--- a/themes/next/components/PaginationNumber.js
+++ b/themes/next/components/PaginationNumber.js
@@ -60,8 +60,6 @@ const PaginationNumber = ({ page, totalPage }) => {
}
function getPageElement(pagePrefix, page, currentPage) {
- console.log(pagePrefix, page, currentPage)
-
return (