Files
cpost-front/environment.d.ts
azizziy c01e852a59 init
2025-05-20 17:02:10 +05:00

9 lines
204 B
TypeScript

declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: 'production' | 'development' | 'test';
NEXT_PUBLIC_BASE_URL: string;
NEXT_PUBLIC_BACKEND_BASE_URL: string;
}
}