{
test: /\.scss$/,
loaders: ['style', 'css?sourceMap', 'postcss', 'sass?sourceMap&sourceMapContents'],
},
{
test: /\.(png|jpg)$/,
loader: 'url?limit=25000',
},
I found those urls when clicking "open in a new tab" in the style panel in Chrome dev tools.
obviously the image doesn't show on the DOM when I use sourcemap....
my config:
and I have a scss file containing
background-image: url('./invision.png');Problem
http://localhost:8080/f035551efcaa590a1da0bf1fae114dca.png
chrome-devtools://devtools/bundled/f035551efcaa590a1da0bf1fae114dca.png
I found those urls when clicking "open in a new tab" in the style panel in Chrome dev tools.
obviously the image doesn't show on the DOM when I use sourcemap....