-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(cors): Support new LAGO_DOMAIN (#1849)
- Loading branch information
Showing
5 changed files
with
34 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,34 @@ | ||
interface Window { | ||
Cypress: any; | ||
Lago: any; | ||
interface Window { | ||
Cypress: any | ||
Lago: any | ||
} | ||
|
||
declare type AppEnvEnum = import('./src/core/constants/globalTypes').AppEnvEnum | ||
|
||
declare var APP_ENV: AppEnvEnum | ||
declare var API_URL: string; | ||
declare var APP_VERSION: string; | ||
declare var LAGO_OAUTH_PROXY_URL: string; | ||
declare var LAGO_DISABLE_SIGNUP: string; | ||
declare var NANGO_PUBLIC_KEY: string; | ||
declare var SENTRY_DSN: string; | ||
declare var API_URL: string | ||
declare var LAGO_DOMAIN: string | ||
declare var APP_VERSION: string | ||
declare var LAGO_OAUTH_PROXY_URL: string | ||
declare var LAGO_DISABLE_SIGNUP: string | ||
declare var NANGO_PUBLIC_KEY: string | ||
declare var SENTRY_DSN: string | ||
|
||
declare module "*.svg" { | ||
const content: any; | ||
export default content; | ||
declare module '*.svg' { | ||
const content: any | ||
export default content | ||
} | ||
declare module "*.png" { | ||
const value: any; | ||
export default value; | ||
declare module '*.png' { | ||
const value: any | ||
export default value | ||
} | ||
|
||
declare module "*.jpg" { | ||
const value: any; | ||
export default value; | ||
declare module '*.jpg' { | ||
const value: any | ||
export default value | ||
} | ||
|
||
declare module "*.jpeg" { | ||
const value: any; | ||
export default value; | ||
declare module '*.jpeg' { | ||
const value: any | ||
export default value | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters