美文网首页
Vue2.x项目打包路径配置(相对路径)

Vue2.x项目打包路径配置(相对路径)

作者: Joker丶龙 | 来源:发表于2019-08-13 09:51 被阅读0次

配置共分为两个步骤:
第一步:修改config/index.js下的配置

build: {
    // Template for index.html
    index: path.resolve(__dirname, '../dist/index.html'),

    // Paths
    assetsRoot: path.resolve(__dirname, '../dist'),
    assetsSubDirectory: 'static',
    assetsPublicPath: './' // 将'/'修改为'./'
    },

注意:修改的build对象下的数据
第二步:修改build/utils.js下的配置

    // 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.x项目打包路径配置(相对路径)

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