fix(port): Adding port config to .env-local file

This commit is contained in:
Chris Troutner
2025-11-28 06:00:02 -08:00
parent d204f78fa4
commit 8b12938e6c
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ const basicAuthDefaults = {
export default {
// Server port
port: process.env.PORT || 5942,
port: parseInt(process.env.PORT, 10) || 5942,
// Environment
env: process.env.NODE_ENV || 'development',