build(tauri): 更新后端端口并优化打包流程

- 将后端端口从8000 修改为 8483
- 更新前端请求基础 URL 以匹配新的后端端口
- 优化后端打包脚本,确保 .env 文件正确复制和清理
- 修改后端主程序和请求工具中的端口配置
This commit is contained in:
JefferyHcool
2025-06-20 09:35:34 +08:00
parent 29372bab6b
commit c24fcc6d7d
8 changed files with 62 additions and 25 deletions

View File

@@ -11,10 +11,11 @@ export interface IResponse<T = any> {
// 模拟一个消息提示函数 (实际项目中会使用UI库的组件如 Ant Design 的 message 或 Element UI 的 ElMessage)
// This function simulates a message display (in real projects, you'd use a UI library's component)
const baseURL = import.meta.env.VITE_API_BASE_URL;
// 创建实例
const request: AxiosInstance = axios.create({
baseURL: '/api', // 请确保你的开发服务器代理设置正确
baseURL: baseURL || '/api',
timeout: 10000,
});