美文网首页
vue打包时的注意事项(个人总结)

vue打包时的注意事项(个人总结)

作者: 汶沐 | 来源:发表于2019-02-20 17:04 被阅读0次

    在build/utils.js里找到以下代码段添加 publicPath:'../../' :

    if (options.extract) {
          return ExtractTextPlugin.extract({
            use: loaders,
            fallback: 'vue-style-loader',
            publicPath:'../../'    //<-此处添加此参数
          })
        } else {
          return ['vue-style-loader'].concat(loaders)
        }
    

    把config/index.js里的module.exports的build的assetsPublicPath改为'./'
    assetsPublicPath:'./'
    最后还有一点注意的是,router里的mode不能用history模式,要用默认的hash模式,不然页面会一片空白的。
    如果执意用history模式的话,要服务端配置,具体操作:history模式

    相关文章

      网友评论

          本文标题:vue打包时的注意事项(个人总结)

          本文链接:https://www.haomeiwen.com/subject/unghyqtx.html