0
在開發之後,我有這樣的結構:的WebPack CSS改變圖像路徑建立
- dist - contain the css bundle
- sass - style.scss
- js
- img
- index.html
在生產中,我有這樣的結構:
- img
- some-hash.js
- some-hase.css
- index.html
因此,在發展自己的形象網址應該是相對於像這樣的img文件夾:
background: url('../img/logo.jpg');
但是在生產中它應該是這樣的:
background: url('img/logo.jpg');
我們如何解決這個問題與webpack或一般?