Skip to content
Snippets Groups Projects
http.config.ts 165 B
Newer Older
import { registerAs } from '@nestjs/config';

export const httpConfig = registerAs('http', () => ({
  host: process.env.HOST,
  port: Number(process.env.PORT),
}));