18 lines
479 B
TypeScript
18 lines
479 B
TypeScript
/**
|
|
* @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 }; |