feat: vite dev server with HMR for dashboard

This commit is contained in:
Dustin Byrne
2026-03-25 19:06:14 -04:00
parent 98ddf0f3d3
commit 4a7a9041c1
4 changed files with 47 additions and 26 deletions

View File

@@ -25,7 +25,7 @@ export async function runDashboard(port: number, opts: { engine?: boolean; open?
});
// Start the web server with AI merge wired in
const app = createServer(store, { onMerge });
const app = await createServer(store, { onMerge, dev: true });
// Clean shutdown for file watcher when engine is not active
if (!opts.engine) {