在静态目录建立config.js文件存放动态域名
let baseUrl = 'http://192.168.21.122:8201/' let baseFileUrl = 'http://192.168.10.331:31703/' // let baseUrl = 'https://www.baidu.com/' // let baseFileUrl = 'https://www.albb.com/' window.baseUrl = baseUrl; window.baseFileUrl = baseFileUrl;
在index.html中引入,放上面一些,保证打包之后在app.js 上面
项目使用接口文档更换window,添加兼容防止没有获取到动态域名
const baseURL:string|undefined|boolean = window.baseUrl || import.meta.env.VITE_API_URL
打包之后更改域名时候nginx要重启,浏览器要清缓存