Removed adaptive port for API

This commit is contained in:
Dries Augustyns
2024-07-23 18:48:37 +02:00
parent d568be98cc
commit 7c50176263
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -21,7 +21,6 @@ export function validateEnv<T extends string = string>(
// ENV
export const JWT_SECRET = validateEnv("JWT_SECRET");
export const PORT = validateEnv<`${number}`>("PORT", "4000");
export const NODE_ENV = validateEnv<"development" | "production">(
"NODE_ENV",
"production",