Cybersecurity-Projects/PROJECTS/encrypted-p2p-chat/frontend/src/vite-env.d.ts

12 lines
216 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string
readonly VITE_WS_URL: string
readonly VITE_RP_ID: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}