We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d1d72 commit 86356a2Copy full SHA for 86356a2
config/envVarCheck.ts
@@ -10,7 +10,7 @@ export default function validateEnv() {
10
envKeys.forEach((key) => {
11
console.log(process.env[key]);
12
if (!process.env[key]) {
13
- console.warn("Environment variable ${key} is not set.");
+ console.warn(`Environment variable ${key} is not set.`);
14
}
15
});
16
0 commit comments