Files
ims-front/src/settings/http.ts
my_ong 994fd58bb0
All checks were successful
Release / lint (push) Successful in 49s
Release / Release (push) Successful in 1m53s
sparkles: 物料库存导出excel
2025-03-15 17:41:49 +08:00

12 lines
235 B
TypeScript

export interface Http {
prefix: string // 前缀
timeout: number
downloadUrl: string
}
export const http: Http = {
prefix: import.meta.env.VITE_HTTP_PREFIX,
timeout: 10 * 1000,
downloadUrl: import.meta.env.VITE_UPLOAD_PREFIX,
}