Is there a way I can tell the loader not to resolve a url to images in a url()
Would like:
background-image: url('../img/some-image.gif');
to output the same thing:
background-image: url('../img/some-image.gif');
no, but you can use the raw-loader instead of the css-loader.
Thanks
This worked for me css-loader?url=false
https://github.com/webpack-contrib/mini-css-extract-plugin/issues/156#issuecomment-402265124
Most helpful comment
This worked for me
css-loader?url=falsehttps://github.com/webpack-contrib/mini-css-extract-plugin/issues/156#issuecomment-402265124