1

当我在开发模式下运行我的 vue.js 项目时,所有图像都正确加载,但是在 npm run build 之后,一些图像丢失了,因为它们不在生成的 dist 文件夹中。

一些图像被转移,但不是全部。我不明白为什么 dist 文件夹中的图像在文件夹中而其他图像不在文件夹中的原因。有人知道这个问题可能是什么原因吗?

这是我的webpack.confi.js文件

 {
    test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
    loader: 'url-loader',
    options: {
      limit: 10000,
      name: utils.assetsPath('img/[name].[hash:7].[ext]')
    }
  },

这是html文件

<img src="/static/img/name.883d0fb.png" id="name">
4

0 回答 0