vignette/apps/web/src/vite-env.d.ts
2026-06-26 15:09:32 +09:00

10 lines
250 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
/** API 베이스 URL. 기본 "/api" (vite proxy / nginx 가 백엔드로 라우팅). */
readonly VITE_API_BASE?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}