Skip to content

Commit

Permalink
fix client name prod config script
Browse files Browse the repository at this point in the history
  • Loading branch information
v-rocheleau committed Mar 13, 2024
1 parent 13040e6 commit d1e759e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion create_config_prod.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const parseBoolean = (value) => ["true", "1", "yes"].includes((value || "").toLocaleLowerCase());

const siteConfig = {
CLIENT_NAME: process.env.CLIENT_NAME || null,
CLIENT_NAME: process.env.BENTO_PUBLIC_CLIENT_NAME || null,
PORTAL_URL: process.env.BENTO_PUBLIC_PORTAL_URL || null,
TRANSLATED: parseBoolean(process.env.BENTO_PUBLIC_TRANSLATED),
BEACON_URL: process.env.BEACON_URL || null,
Expand Down

0 comments on commit d1e759e

Please sign in to comment.