Error

刚刚遇到的问题,如往常一样执行

hexo clean
hexo d -g

重新部署的时候莫名出现vendors下的css, js资源无法载入问题。 而在public文件夹下其实vendors文件夹及其文件是正常存在的,权限也正常。

Solution

修改blog/themes/hexo-theme-next/_config.yml文件中:

...
vendors:
  # Internal path prefix. Please do not edit it.
  # _internal: vendors 将此行注释,并改为下面的样子
  _internal: lib
...