主要是 loader 后的 {publicPath: './'}
背景图片的路径在打包后的什么位置, 就可以在 {publicPath: './'}
中的路径中配置,
比如: 打包后背景图片路径在image
文件中, 就可以 把路径配置成 {publicPath: './image'}
{
test: /\.less/,
loader: ExtractTextPlugin.extract("style-loader", "css-loader!less-loader",{publicPath: './'})
},