Skip to content

Commit a091a3b

Browse files
Fix error message to reference example.env instead of example.dev.vars
Co-authored-by: ComputerEndProgram <93030074+ComputerEndProgram@users.noreply.github.com>
1 parent b36751c commit a091a3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server-standalone.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if (missingEnvVars.length > 0) {
3535
for (const varName of missingEnvVars) {
3636
console.error(` - ${varName}`);
3737
}
38-
console.error('\nPlease create a .env file based on example.dev.vars');
38+
console.error('\nPlease create a .env file based on example.env');
3939
process.exit(1);
4040
}
4141

0 commit comments

Comments
 (0)