Webpack - background images not loading

后端 未结 8 1866
渐次进展
渐次进展 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 15:56

    Where is your publicPath entry in output? eg:

    publicPath: 'http://localhost:5000/', // absolute path req here for images in css to work with sourcemaps on. Must be actual numeric ip to access on lan.

    https://github.com/webpack/docs/wiki/configuration#outputpublicpath

提交回复
热议问题