1
我在我的視圖上創建一個標籤img與src;但圖像不顯示。 什麼是路徑? 感謝所有 薩姆webpack angularjs es6圖像路徑
我的test.html
<div class="col-md-10">
<img src='img/logo.png'></img>
<h1> TEST
</h1>
</div>4
我的結構是:
X:\ SRC \網頁\測試\ test.html的
X:\ SRC \網頁\ test \ img \ logo.png
webpack.config.js
}, {
// ASSET LOADER
// Reference: https://github.com/webpack/file-loader
// Copy png, jpg, jpeg, gif, svg, woff, woff2, ttf, eot files to output
// Rename the file using the asset hash
// Pass along the updated reference to your code
//
test: /\.(png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)$/,
loader: 'file'
}, {