学无先后,达者为师

网站首页 Vue 正文

vue识别不了.ico后缀的图片,显示[object Module]

作者:苏Sue酥 更新时间: 2022-04-22 Vue

1.vue识别不了.ico后缀的图片,显示[object Module]

报错如下:
在这里插入图片描述

2.vue.config.js配置

module.exports = {
  chainWebpack: config => {
    config.module
      .rule('images')
      .test(/\.(png|jpe?g|gif|ico)$/i)
      .use('url-loader')
        .loader('url-loader')
        .tap(options => Object.assign(options, { limit: 2000, esModule: false })); 
  }
}

原文链接:https://blog.csdn.net/ME_GIRL/article/details/119714075

栏目分类
最近更新