Skip to content

Commit

Permalink
angular followup
Browse files Browse the repository at this point in the history
  • Loading branch information
art-alexeyenko committed Apr 29, 2024
1 parent f0ca8fd commit c2d640d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ let config = {};\n`;

// Set base configuration values, allowing override with environment variables
Object.keys(config).forEach((prop) => {
configText += `config.${prop} = process.env.${constantCase(prop)} || "${config[prop]}",\n`;
configText += `config.${prop} = process.env.${constantCase(prop)} || "${config[prop]}";\n`;
});
// Set computed values, allowing override with environment variables
Object.keys(computedConfig).forEach((prop) => {
Expand Down

0 comments on commit c2d640d

Please sign in to comment.