修正baseUrl问题

This commit is contained in:
洛洛希雅 2024-04-25 08:39:55 +08:00
parent 7273c1da91
commit 32afd40532
2 changed files with 19 additions and 4 deletions

View File

@ -62,10 +62,21 @@ service.interceptors.response.use(
) )
export const baseUrl: string = (() => { export const baseUrl: string = (() => {
let port = import.meta.env.VITE_APP_BASE_URL if (window.NGINX_BASE_URL) return window.NGINX_BASE_URL
if (/:\d{1,5}/.test(port)) port = port.match(/(?<port>:\d{1,5})/)?.groups?.port ?? ''
else port = `:${location.port}` const mode = import.meta.env.VITE_APP_BASE_MODE
return `${location.protocol}//${location.hostname}${port}` if (mode === 'port') {
const port = import.meta.env.VITE_APP_BASE_PORT || location.port
return `${location.protocol}//${location.hostname}:${port}`
}
if (mode === 'url') {
let url = import.meta.env.VITE_APP_BASE_URL
if (!url) url = `${location.protocol}//${location.host}`
return url
}
//local
return `${location.protocol}//${location.host}`
})() })()
//导出service实例给页面调用 , config->页面的配置 //导出service实例给页面调用 , config->页面的配置

4
typings/env.d.ts vendored
View File

@ -9,5 +9,9 @@ declare global {
interface ImportMeta { interface ImportMeta {
readonly env: ImportMetaEnv readonly env: ImportMetaEnv
} }
interface Window {
readonly NGINX_BASE_URL: string | undefined
}
} }
export {} export {}