fix: Add nixpacks.toml to explicitly set Node.js 20

Ensures Easypanel uses Node.js 20 for building, preventing version
mismatch with Astro 5.x requirements
This commit is contained in:
Kunthawat Greethong
2026-03-10 13:09:36 +07:00
parent 226494193d
commit e463a038c9

8
nixpacks.toml Normal file
View File

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