当前位置:   article > 正文

vue中vite.config.js配置跨域以及环境配置详解_vite跨域配置

vite跨域配置

如何配置跨域,代理域名,下面是vite的代理

  1. server: {
  2. port: 8516,
  3. host: true,
  4. open: true,
  5. proxy: {
  6. '/license-province': {
  7. target: 'http://xxx.xxx.x.xxx:xxxx',
  8. changeOrigin: true,//是否跨域
  9. rewrite: (p) => p.replace(/^\/license-province/, 'license-province')//重写路径
  10. }
  11. }
  12. },

区分开发环境和生产环境,以及预发布环境

  1. 在根目录创建 .env[mode]文件,在项目执行 npm run dev 的时候vite会自动去读取 .env.development 文件里面的配置,执行 npm run build 进行打包之后也会自动将 .env.production 的内容打包进去.
  2. 注意: 如果你想进入预发布模式的话需要在打包的时候进行mode配置: npm run build --mode staging
  3. 公共的: .env
  4. 开发环境: .env.development
  5. 生产环境: .env.production
  6. 预发布环境: .env.staging

我们的 .env.development 和 .env.production 文件里面都会有 VITE_APP_ENV 配置:

在我们的 vite.config.js文件中:

以上是 vite.config.js 的配置,上面展示了在不同环境下去请求对应环境的域名并且配置代理进行跨域.

VUE中常用proxy来解决跨域问题

1.在vue.config.js中设置一下代码:
  1. module.exports = {
  2. dev: {
  3. // Paths
  4. assetsSubDirectory: 'static',
  5. assetsPublicPath: '/',
  6. proxyTable: { // 配置跨域
  7. '/api':{
  8. target:`http://xxx.xxx.xxx`, //请求后台接口
  9. changeOrigin:true, // 允许跨域
  10. pathRewrite:{
  11. '^/api' : '' // 重写请求
  12. }
  13. }
  14. },
  15. }

2. 创建axioss实例时,将baseUrl设置为 '/api'

  1. const http = axios.create({
  2. timeout: 1000 * 1000000,
  3. withCredentials: true,
  4. BASE_URL: '/api'
  5. headers: {
  6. 'Content-Type': 'application/json; charset=utf-8'
  7. }
  8. })

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/598120
推荐阅读
相关标签
  

闽ICP备14008679号