aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/xtext/BackendConfig.ts
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/xtext/BackendConfig.ts')
-rw-r--r--subprojects/frontend/src/xtext/BackendConfig.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/frontend/src/xtext/BackendConfig.ts b/subprojects/frontend/src/xtext/BackendConfig.ts
index 4c7eac5f..e7043bd5 100644
--- a/subprojects/frontend/src/xtext/BackendConfig.ts
+++ b/subprojects/frontend/src/xtext/BackendConfig.ts
@@ -11,7 +11,7 @@ import { z } from 'zod';
11export const ENDPOINT = 'config.json'; 11export const ENDPOINT = 'config.json';
12 12
13const BackendConfig = z.object({ 13const BackendConfig = z.object({
14 webSocketURL: z.string().url(), 14 webSocketURL: z.string().url().optional(),
15}); 15});
16 16
17type BackendConfig = z.infer<typeof BackendConfig>; 17type BackendConfig = z.infer<typeof BackendConfig>;