From 1baee073c36a1ef694fa086aa1d64986d51c9bca Mon Sep 17 00:00:00 2001 From: Emanuel Almeida Date: Sun, 8 Feb 2026 17:23:25 +0000 Subject: [PATCH] fix: add Procfile to use API server instead of static serve Nixpacks was auto-detecting Vite and using 'npx serve dist' which only serves the frontend. The API server handles both API routes and SPA fallback. Co-Authored-By: Claude Opus 4.6 --- Procfile | 1 + 1 file changed, 1 insertion(+) create mode 100644 Procfile diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..0448dad --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: node api/dist/server.js