11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
// Vite 환경변수 타입 정의 — VITE_ prefix 만 클라이언트 번들에 포함됨
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE_URL: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|