style front page, default to prod config

This commit is contained in:
Evan
2025-01-27 21:11:06 -08:00
parent 3d58ef185c
commit f8cc4baf7e
4 changed files with 14 additions and 14 deletions
+3 -2
View File
@@ -36,10 +36,11 @@ export function getServerConfig(): ServerConfig {
consolex.log('using preprod config')
return preprodConfig
case 'prod':
default:
consolex.log('using prod config')
return prodConfig
default:
throw Error(`unsupported server configuration: ${process.env.GAME_ENV}`)
// default:
// throw Error(`unsupported server configuration: ${process.env.GAME_ENV}`)
}
}