Skip to content

Commit

Permalink
Update config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
datajohnson committed Dec 18, 2024
1 parent 9597c20 commit b8550f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const apiBaseUrl = process.env.NODE_ENV == "production" ? "" : "http://lo
export const API_PORT = process.env.API_PORT || "3000";

export const FRONTEND_URL = process.env.FRONTEND_URL || "";
export const AUTH0_DOMAIN = `${process.env.AUTH0_DOMAIN}/` || "";
export const AUTH0_DOMAIN = `${process.env.AUTH0_DOMAIN?.replace(/\/$/, "")}/` || "";
export const AUTH0_AUDIENCE = process.env.AUTH_AUDIENCE;

export const APPLICATION_NAME = process.env.APPLICATION_NAME || "";
Expand Down

0 comments on commit b8550f5

Please sign in to comment.