建立websocket

This commit is contained in:
wzy-warehouse
2026-05-12 17:45:43 +08:00
parent e1be848799
commit 1e524ee55f
6 changed files with 430 additions and 4 deletions
Vendored
+2 -2
View File
@@ -1,9 +1,8 @@
NEW_FILE_CODE;
/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
const component: DefineComponent<object, object, unknown>;
export default component;
}
@@ -12,6 +11,7 @@ interface ImportMetaEnv {
readonly VITE_BACKEND_BASE_URL: string;
readonly START_PORT: number;
readonly VITE_GEOSERVER_BASE_URL: string;
readonly VITE_WEBSOCKET_URL: string;
readonly MODE: string;
readonly DEV: boolean;
readonly PROD: boolean;