9 lines
323 B
JavaScript
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()],
|
|
});
|