棚子家   「返回」

Hexo博客图片插件的坑

[作者] 棚子 [创建时间] 2024-12-13 14:46:47

起因

许久没写博客,换了电脑。从github上拉下来hexo博客,一顿操作。图片连接全error

通过查询,才知道hexo-asset-image插件有坑
npm install后,需要修改hexo-asset-image/index.js代码

解决

重点来了
位置在58-59行,将原来获取图片路径的代码注释掉,改成下面的

// $(this).attr('src', config.root + link + src);
// console.info&&console.info("update link as:-->"+config.root + link + src);

$(this).attr('src', src);
console.info && console.info("update link as:-->" + src);

修改后 hexo clean
然后再 hexo s 图片回来了

Contact me at E-mail
[阅读量 次]
回到顶部