写在前面
随着2020年7月29日到来,Node.js 上最快的静态站点生成器 Hexo 发布了 5.0.0 版本。
本文主要说明我在升级后遇到的坑,以及解决方案。
在hexo5.0.0新版本后,运行hexo s或者hexo g的时候会出现如下的报错情况:
报错代码
INFO Validating config
WARN Deprecated config detected: "external_link" with a Boolean value is deprecated. See https://hexo.io/docs/configuration for more details.
解决方案
打开主目录下的_config.yml
找到:
external_link: true # Open external links in new tab
修改成:
external_link:
enable: true # Open external links in new tab
field: site # Apply to the whole site
exclude: ''
评论区