vue打包

一、修改配置文件

1.build->utils.js

增加 :publicPath:'../../' 

// Extract CSS when that option is specified
// (which is the case during production build)
if (options.extract) {
  return ExtractTextPlugin.extract({
    use: loaders,
    fallback: 'vue-style-loader',
    publicPath:'../../' //解决打包后icon异常问题
  })
} else {
  return ['vue-style-loader'].concat(loaders)
}

2.config->index.js

增加:build中将  assetsPublicPath: '/', 替换为 assetsPublicPath: './'

解决打包后资源找不到问题

posted @ 2020-06-06 14:12  扶不起的刘阿斗  阅读(190)  评论(0编辑  收藏  举报