// /src/modules/configs/configs.service.ts 等
import { Injectable } from '@nestjs/common'
import { ConfigService } from '@nestjs/config'
export class ApiConfigService {
constructor(private configService: ConfigService) {}
return this.configService.get('NODE_ENV')
get SERVER_PORT(): number {
console.log(typeof this.configService.get('SERVER_PORT'))
return this.configService.get('SERVER_PORT')