使用 webpack 5 的模板中为背景图像创建的路径是错误的

Path created for background image is wrong in the template using webpack 5

我正在尝试使用 webpack 5 构建我的模板文件。问题是正在生成的背景图像的路径是“basic-project/dist/stylesheet/img/webpack-bg.png”,而应该是“[=16=” .png"。附件是 webpack.config.js 文件截图。

看起来你已经设置好了一切。正如您提到的,实际问题来自 output.publicPath 值。基本上,大多数情况下,正确的应该设置为/

// webpack.config.js
module.exports = {
  // ...
  output: {
    // ...
    publicPath: '/',
  },
}