| New file |
| | |
| | | `.env.development` |
| | | // 开发环境配置 |
| | | # VITE_BASIC_API = 'https://hemobs.icoldchain.cn/' |
| | | VITE_BASIC_API = 'http://testbs.ihemodialysis.com/' |
| New file |
| | |
| | | `.env.production` |
| | | // 正式环境配置 |
| | | VITE_BASIC_API = 'https://hemobs.icoldchain.cn/' |
| | |
| | | import { Session } from '@/utils/storage' |
| | | |
| | | let controllers: AbortController[] = [] |
| | | const BASE_URL = import.meta.env.VITE_BASIC_API |
| | | |
| | | const BASE_URL = 'https://hemobs.icoldchain.cn' |
| | | // const BASE_URL = 'https://hemobs.icoldchain.cn' |
| | | // const BASE_URL='http://testbs.ihemodialysis.com' |
| | | const TIME_OUT = 10 * 1000 |
| | | |