从CSS和HTML文件加载图像时使用相同的publicPath

时间:2019-04-14 11:22:22

标签: webpack

为简单起见,我有:

Ape

在style.css中: Banana

在index.html中: | index.html +---css | style.css +---img | image.jpg

我基本上希望在输出中使用相同的内容,但是,对于css,我得到了: background: url("../img/image.jpg")

因此它不起作用,因为css与index.html不在同一文件夹中

1 个答案:

答案 0 :(得分:3)

为了解决此问题,我必须将publicPath: '../'设置为css规则。