Skip to content

Instantly share code, notes, and snippets.

@onwuvic
Created May 11, 2020 07:48
Show Gist options
  • Save onwuvic/55f795873d57efe735821b11898f471d to your computer and use it in GitHub Desktop.
Save onwuvic/55f795873d57efe735821b11898f471d to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
@Module({
imports: [
ConfigModule.forRoot({ isGlobal: true }),
]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment