fix: auto migrate proxy config
This commit is contained in:
parent
7c04a90d77
commit
066ca9e552
|
@ -118,7 +118,7 @@ export const useSyncStore = createPersistStore(
|
||||||
}),
|
}),
|
||||||
{
|
{
|
||||||
name: StoreKey.Sync,
|
name: StoreKey.Sync,
|
||||||
version: 1.1,
|
version: 1.2,
|
||||||
|
|
||||||
migrate(persistedState, version) {
|
migrate(persistedState, version) {
|
||||||
const newState = persistedState as typeof DEFAULT_SYNC_STATE;
|
const newState = persistedState as typeof DEFAULT_SYNC_STATE;
|
||||||
|
@ -127,6 +127,15 @@ export const useSyncStore = createPersistStore(
|
||||||
newState.upstash.username = STORAGE_KEY;
|
newState.upstash.username = STORAGE_KEY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (version < 1.2) {
|
||||||
|
if (
|
||||||
|
(persistedState as typeof DEFAULT_SYNC_STATE).proxyUrl ===
|
||||||
|
"/api/cors/"
|
||||||
|
) {
|
||||||
|
newState.proxyUrl = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return newState as any;
|
return newState as any;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -4,6 +4,9 @@ import { ApiPath, DEFAULT_API_HOST } from "../constant";
|
||||||
export function corsPath(path: string) {
|
export function corsPath(path: string) {
|
||||||
const baseUrl = getClientConfig()?.isApp ? `${DEFAULT_API_HOST}` : "";
|
const baseUrl = getClientConfig()?.isApp ? `${DEFAULT_API_HOST}` : "";
|
||||||
|
|
||||||
|
if (baseUrl === "" && path === "") {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
if (!path.startsWith("/")) {
|
if (!path.startsWith("/")) {
|
||||||
path = "/" + path;
|
path = "/" + path;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue