为简单起见,我有:
Ape
在style.css中:
Banana
在index.html中:
| index.html
+---css
| style.css
+---img
| image.jpg
我基本上希望在输出中使用相同的内容,但是,对于css,我得到了:
background: url("../img/image.jpg")
因此它不起作用,因为css与index.html不在同一文件夹中
答案 0 :(得分:3)
为了解决此问题,我必须将publicPath: '../'
设置为css规则。