revert: drop vite middleware, add watch build instead

This commit is contained in:
Dustin Byrne
2026-03-25 19:08:04 -04:00
parent 4a7a9041c1
commit 87f9cee792
5 changed files with 28 additions and 48 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 = await createServer(store, { onMerge, dev: true });
const app = createServer(store, { onMerge });
// Clean shutdown for file watcher when engine is not active
if (!opts.engine) {