保存进度!

This commit is contained in:
2025-11-21 18:01:17 +08:00
parent d22b29f45d
commit 1e20eeb0d1
9 changed files with 259 additions and 47 deletions

View File

@@ -0,0 +1,18 @@
/**
* @Author: Kane Wang <wangkane@qq.com>
* @Date: 2025-11-21 09:39:59
* @LastEditors: Kane Wang
* @LastModified: 2025-11-21 09:40:00
* @FilePath: src/utils/config.ts
* @Description: 保存应用的配置参数。
*
* Copyright (c) 2025 by Kane All rights reserved
*/
const API_URL= {
URL_UPLOAD_FILE: import.meta.env.VITE_APP_URL_UPLOAD_FILE,
URL_MOVE_FILE: import.meta.env.VITE_APP_URL_MOVE_FILE,
};
console.log( API_URL );
export { API_URL };