Merge branch 'develop' into pranshuchittora/fix/0.8.1/tsc

This commit is contained in:
palash-signoz 2022-05-20 22:09:18 +05:30 committed by GitHub
commit d3094e10bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -3,5 +3,4 @@ export const ENVIRONMENT = {
process?.env?.FRONTEND_API_ENDPOINT || process?.env?.FRONTEND_API_ENDPOINT ||
process?.env?.GITPOD_WORKSPACE_URL?.replace('://', '://8080-') || process?.env?.GITPOD_WORKSPACE_URL?.replace('://', '://8080-') ||
'', '',
NODE_ENV: process?.env?.NODE_ENV,
}; };

View File

@ -3,7 +3,6 @@ declare global {
namespace NodeJS { namespace NodeJS {
interface ProcessEnv { interface ProcessEnv {
FRONTEND_API_ENDPOINT: string | undefined; FRONTEND_API_ENDPOINT: string | undefined;
NODE_ENV: 'development' | 'production' | 'test';
} }
} }
} }