This commit is contained in:
2026-05-26 12:27:23 +02:00
parent 39e23546e8
commit ffd8b3e5c9
26 changed files with 1514 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
/** Base URL of the backend HTTP API, e.g. https://localhost:3000 */
readonly VITE_API_BASE?: string;
/** Base URL of the backend websocket, e.g. wss://localhost:3000 */
readonly VITE_WS_BASE?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<Record<string, unknown>, Record<string, unknown>, unknown>;
export default component;
}