hexo博客踩坑记录

前言

本文用于记录博客搭建过程中遇到的问题及解决办法

1.hexo d后 ERROR Deployer not found: git

npm install `--`save hexo-deployer-git

即可

参考文献:hexo d后 ERROR Deployer not found: git

2.由于nodejs版本过高导致的部署报错

在部署hexo博客时出现以下错误:

image-20201223213027636

即:

(node:10524) Warning: Accessing non-existent property 'lineno' of module exports inside circular dependency
(Use `node --trace-warnings ...` to show where the warning was created)

解决方案:将当前版本的nodejs进行降级到12.x版本即可

具体操作参考:windows如何把已安装的nodejs高版本降级为低版本(图文教程)

3.hexo的skura主题主页视频相关

仅支持20M以下MP4格式的视频,这是目前的测试情况,没有找到解决方案。

4.hexo安装指令

$ npm install -g hexo-cli

冷秋