17 lines
421 B
TypeScript
17 lines
421 B
TypeScript
|
|
/// <reference types="vite/client" />
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Typisierte Vite-Umgebungsvariablen (apps/web).
|
||
|
|
*
|
||
|
|
* VITE_WS_URL: optionale direkte WebSocket-URL zum Control Core, z. B.
|
||
|
|
* „ws://localhost:8000/ws“, wenn die Oberfläche nicht über den
|
||
|
|
* Same-Origin-Proxy (Vite-Dev-Server/Reverse-Proxy) läuft.
|
||
|
|
*/
|
||
|
|
interface ImportMetaEnv {
|
||
|
|
readonly VITE_WS_URL?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ImportMeta {
|
||
|
|
readonly env: ImportMetaEnv;
|
||
|
|
}
|