vue 打包路径问题

两盒软妹~` 提交于 2020-10-28 06:55:46

vue 打包配置路径输出解决静态资源相对路径问题

方法一:

config/index.js

 build: {

    assetsPublicPath: './',

......

}

方法二:

webpack.prod.conf.js

output: {

      publicPath: './'

}

 

vue 背景图片的引用路径问题

build utils.js

if(options.extract){

return ExtractTextPlugin.extract({

        use: loaders,

        fallback: 'vue-style-loader',

        publicPath: '../../'

      })

  } else {

      return ['vue-style-loader'].concat(loaders)

  }

}

 

 不使用Vue修改语法正则,需要在webpack.base.conf.js中把以下代码注释

module: {

    rules: [

      // {

      //   test: /\.(js|vue)$/,

      //   loader: 'eslint-loader',

      //   enforce: 'pre',

      //   include: [resolve('src'), resolve('test')],

      //   options: {

      //     formatter: require('eslint-friendly-formatter')

      //   }

      // },

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!