15 lines
416 B
TypeScript
15 lines
416 B
TypeScript
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: 'development' | 'production';
|
|
GAME_DB_HOST: string;
|
|
GAME_DB_DATABASE: string;
|
|
GAME_DB_PORT: string;
|
|
GAME_DB_USER: string;
|
|
GAME_DB_PASSWORD: string;
|
|
SERVER_PORT: string; //숫자
|
|
SESSION_SECRET: string; //길게
|
|
|
|
API_ROOT_PATH?: string;
|
|
VITE_API_ROOT_PATH?: string;
|
|
}
|
|
} |