Skip to content

Commit

Permalink
Standardised Accepted string values
Browse files Browse the repository at this point in the history
  • Loading branch information
SanjeevLakhwani committed Oct 1, 2024
1 parent 5253e74 commit f4db036
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,4 +1,4 @@
const parseBoolean = (value) => ['true', '1', 'yes'].includes((value || '').toLocaleLowerCase());
const parseBoolean = (value) => ['true', 't', '1', 'yes'].includes((value || '').toLocaleLowerCase());

const siteConfig = {
CLIENT_NAME: process.env.BENTO_PUBLIC_CLIENT_NAME || null,
Expand Down

0 comments on commit f4db036

Please sign in to comment.