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.
This commit is contained in:
Kunthawat Greethong
2026-03-10 13:13:40 +07:00
parent e463a038c9
commit 63a9f5df9f

View File

@@ -1,8 +1,2 @@
[phases.build]
cmds = ["npm run build"]
[phases.start]
cmds = ["npm run start"]
[variables]
NODE_VERSION = "20"