Skip to content

Commit 5ecacb9

Browse files
authored
fix: better handling of CORS related issues
Fixing cors issues
2 parents a099fcb + b9006fe commit 5ecacb9

File tree

8 files changed

+366
-140
lines changed

8 files changed

+366
-140
lines changed

docs/developer-guide.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -458,9 +458,6 @@ interface Config {
458458
// Default tab name
459459
tabName: string; // default: "Query"
460460

461-
// CORS proxy URL
462-
corsProxy?: string;
463-
464461
// Endpoint catalogue configuration
465462
endpointCatalogueOptions: EndpointSelectConfig;
466463

@@ -495,9 +492,6 @@ interface Config {
495492
// Context menu container element
496493
contextMenuContainer?: HTMLElement;
497494

498-
// Non-SSL domain for mixed content
499-
nonSslDomain?: string;
500-
501495
// Theme: 'light' or 'dark'
502496
theme?: 'light' | 'dark';
503497

@@ -902,9 +896,6 @@ interface RequestConfig {
902896
// Adjust query before request
903897
adjustQueryBeforeRequest?: (query: string) => string;
904898

905-
// CORS proxy
906-
corsProxy?: string;
907-
908899
// Authentication
909900
basicAuth?: BasicAuthConfig | ((yasqe: Yasqe) => BasicAuthConfig | undefined);
910901
bearerAuth?: BearerAuthConfig | ((yasqe: Yasqe) => BearerAuthConfig | undefined);

0 commit comments

Comments
 (0)