Vue技术点整理-vue.config.js

Posted Front-Web

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue技术点整理-vue.config.js相关的知识,希望对你有一定的参考价值。

1,proxy代理解决本地开发环境跨域问题

配置proxy代理后,proxy会将任何未知请求 (没有匹配到静态文件的请求) 代理到 https://192.168.3.49:8080

vue.config.js配置

devServer: {
    proxy: {
      /edu-api: {
        target: `https://192.168.3.49:8080`,
        changeOrigin: true,
      }
    }
  }

业务请求代码

axios.get("/edu-api/userList")
.then(response => {
    console.info(response)
})

 2,vue-cli打包后,增加时间戳后缀名,避免缓存问题

const Timestamp = new Date().getTime();
module.exports = {
    configureWebpack: {
    output: {
      filename: `[name].${Timestamp}.js`,
      chunkFilename: `[name].${Timestamp}.js`
    }
   }
}

  

以上是关于Vue技术点整理-vue.config.js的主要内容,如果未能解决你的问题,请参考以下文章

vue.config.js模板

vue.config.js 配置

vue.config.js引入ui

vue3跨域请求

vue.config.js 中配置全局 scss

vue.config.js常用配置