问题展示:
如图
解决方法:
在build文件夹中下util.js,加入publicPath: '…/…/'即可解决
if (options.extract) {
return ExtractTextPlugin.extract({
use: loaders,
fallback: 'vue-style-loader',
publicPath: '../../',
})
} else {
return ['vue-style-loader'].concat(loaders)
}