telemetry-dashboard/vite.config.js
2026-07-04 03:23:46 +09:00

9 lines
323 B
JavaScript

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()],
});