feat: Allow option publicServerURL to be set dynamically as asynchronous function (#9803)
This commit is contained in:
2
types/Options/index.d.ts
vendored
2
types/Options/index.d.ts
vendored
@@ -85,7 +85,7 @@ export interface ParseServerOptions {
|
||||
cacheAdapter?: Adapter<CacheAdapter>;
|
||||
emailAdapter?: Adapter<MailAdapter>;
|
||||
encodeParseObjectInCloudFunction?: boolean;
|
||||
publicServerURL?: string;
|
||||
publicServerURL?: string | (() => string) | (() => Promise<string>);
|
||||
pages?: PagesOptions;
|
||||
customPages?: CustomPagesOptions;
|
||||
liveQuery?: LiveQueryOptions;
|
||||
|
||||
Reference in New Issue
Block a user