Skip to content

Commit

Permalink
Allow analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
prevostc committed Sep 2, 2024
1 parent ef95fe4 commit ca1768b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const API_ENV: string = process.env.API_ENV || 'production';
export const API_PORT: number = getNumberEnv('PORT', 4000);
export const API_CORS_ORIGIN: RegExp = new RegExp(
process.env.API_CORS_ORIGIN ||
'^(https:\\/\\/app\\.beefy\\.(com|finance)|http:\\/\\/localhost(:[0-9]+)?|http:\\/\\/127.0.0.1(:[0-9]+)?)$'
'^(https:\\/\\/(app|analytics)\\.beefy\\.(com|finance)|http:\\/\\/localhost(:[0-9]+)?|http:\\/\\/127.0.0.1(:[0-9]+)?)$'
);
export const API_RATE_LIMIT = getNumberEnv('API_RATE_LIMIT', 60); // per minute
export const LOG_LEVEL = getLogLevelEnv('LOG_LEVEL', 'info');
Expand Down

0 comments on commit ca1768b

Please sign in to comment.