Hexo博客引用本地的图片却显示不出来

在主题的配置文件_config.yml中加入了图片路径

donate:
    -
        # Donation entry name
        type: alipay
        # Qrcode image URL
        qrcode: '/images/alipay.jpg'
    -
        # Donation entry name
        type: wechat
        # Qrcode image URL
        qrcode: '/images/wechat.jpg'

图片路径如下
Hexo博客引用本地的图片却显示不出来_第1张图片
本地使用时,一切显示正常。

部署到GitHub后,图片已经正常上传,页面中却无法显示。

研究了半天发现可能只是拓展名大小写问题,将其改正

donate:
    -
        # Donation entry name
        type: alipay
        # Qrcode image URL
        qrcode: '/images/alipay.JPG'
    -
        # Donation entry name
        type: wechat
        # Qrcode image URL
        qrcode: '/images/wechat.JPG'

再次部署成功显示。

你可能感兴趣的:(Hexo博客引用本地的图片却显示不出来)