From 63a9f5df9f89ec9cdea2f084aa4d25ae268a1556 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Tue, 10 Mar 2026 13:13:40 +0700 Subject: [PATCH] fix: Remove start phase from nixpacks.toml to prevent build-time execution Nixpacks was trying to run 'npm run start' during build phase before dist/ exists. Let Nixpacks auto-detect start command instead of forcing it in build phase. --- nixpacks.toml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nixpacks.toml b/nixpacks.toml index a952851..32b615a 100644 --- a/nixpacks.toml +++ b/nixpacks.toml @@ -1,8 +1,2 @@ -[phases.build] -cmds = ["npm run build"] - -[phases.start] -cmds = ["npm run start"] - [variables] NODE_VERSION = "20"