解决图片在Markdown编辑器中正常显示,但是部署后网页无法加载的问题
首先确认根目录_config.yml文件
将文件中post_asset_folder这一行设置为true
1 | post_asset_folder: true |
然后打开git bash
输入这行命令:
1 | npm install https://github.com/CodeFalling/hexo-asset-image --save |
最后一步,修改插件代码
打开博客根目录中node_modules —> hexo-asset-image —> index.js
修改第58行代码1
$(this).attr('src', config.root + link + src);
将它改为:1
$(this).attr('src', src);
确定自己本地图片的位置正确
然后就完美解决了图片加载问题