import 'dotenv/config'; import { unwrap } from '@sammo/util'; export const serverConfig = { sessionSecret: unwrap(process.env.SESSION_SECRET), port: Number(unwrap(process.env.SERVER_PORT)), gatewayHost: unwrap(process.env.GATEWAY_HOST), gatewayPort: Number(unwrap(process.env.GATEWAY_PORT)), };