fix: preserve server startedAt from wrapper status

This commit is contained in:
2026-07-21 19:29:06 +02:00
parent 6d22275a1f
commit 984992541c
39 changed files with 2299 additions and 97 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
proxy: {
"/api": "http://localhost:3000"
}
}
});