Webpack - background images not loading

后端 未结 8 1826
渐次进展
渐次进展 2020-12-09 15:34

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

8条回答
  •  囚心锁ツ
    2020-12-09 16:04

    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.

提交回复
热议问题