I\'m fairly new to webpack but having some problems with css-loader or file-loader.
I\'m trying to load a background-image but it doesn\'t work quite right. The bac
Webpack generates the css and s them via
blob:
urls, which seems to cause issues with loading background images.
Development workaround
Inline the images via the file-loader in development (creates large base64 string in the css)
But allows for hot-reloading.
Production workaround
Use the ExtractTextPlugin to serve the css as normal file.