修正baseUrl问题
This commit is contained in:
parent
7273c1da91
commit
32afd40532
|
@ -62,10 +62,21 @@ service.interceptors.response.use(
|
|||
)
|
||||
|
||||
export const baseUrl: string = (() => {
|
||||
let port = import.meta.env.VITE_APP_BASE_URL
|
||||
if (/:\d{1,5}/.test(port)) port = port.match(/(?<port>:\d{1,5})/)?.groups?.port ?? ''
|
||||
else port = `:${location.port}`
|
||||
return `${location.protocol}//${location.hostname}${port}`
|
||||
if (window.NGINX_BASE_URL) return window.NGINX_BASE_URL
|
||||
|
||||
const mode = import.meta.env.VITE_APP_BASE_MODE
|
||||
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->页面的配置
|
||||
|
|
4
typings/env.d.ts
vendored
4
typings/env.d.ts
vendored
|
@ -9,5 +9,9 @@ declare global {
|
|||
interface ImportMeta {
|
||||
readonly env: ImportMetaEnv
|
||||
}
|
||||
|
||||
interface Window {
|
||||
readonly NGINX_BASE_URL: string | undefined
|
||||
}
|
||||
}
|
||||
export {}
|
||||
|
|
Loading…
Reference in New Issue
Block a user