This commit is contained in:
Anatoly Antonov 2026-07-04 03:23:46 +09:00
commit 43c120df4c
26 changed files with 3265 additions and 0 deletions

9
vite.config.js Normal file
View file

@ -0,0 +1,9 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
// The WS server address is configured at runtime in the UI (persisted in
// localStorage), so no dev proxy is needed — the dashboard talks to the
// configured host directly.
export default defineConfig({
plugins: [sveltekit()],
});