File size: 393 Bytes
a206d0f | 1 2 3 4 5 6 7 8 9 10 11 12 | /**
* 生产环境前后端同源(Docker / Hugging Face Space)时请在 .env.production 中设 VITE_API_BASE_URL 为空。
* 开发环境使用 .env.development 中的 /api(Vite 代理到后端)。
*/
export function getApiBase() {
const v = import.meta.env.VITE_API_BASE_URL
if (v != null && String(v).trim() !== '') {
return String(v).replace(/\/$/, '')
}
return ''
}
|