vue2+element-ui npm run build打包后,在服务器打开报错

报错

在这里插入图片描述
页面的图标也显示不出来,如下
vue2+element-ui npm run build打包后,在服务器打开报错_第1张图片

解决:

vue2+element-ui npm run build打包后,在服务器打开报错_第2张图片

在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: '../../'
      })
    } else {
      return ['vue-style-loader'].concat(loaders)
    }
  }

解决了,如下:
vue2+element-ui npm run build打包后,在服务器打开报错_第3张图片
原文链接:https://blog.csdn.net/lovewangyage/article/details/129109940

你可能感兴趣的:(ui,前端)