Add nixpacks.toml

This commit is contained in:
2025-06-02 03:27:03 +00:00
parent 94de8a797f
commit c7a798043f

19
nixpacks.toml Normal file
View File

@@ -0,0 +1,19 @@
# nixpacks.toml
[phases.setup]
# Prevent Nixpacks from caching setup phase (e.g., node installation)
cache = false
[phases.install]
# Prevent Nixpacks from caching node_modules or dependencies
cache = false
cmds = ["npm install"]
[phases.build]
# Prevent caching of the build output
cache = false
cmds = ["npm run build"]
[start]
# Start your SvelteKit SSR server
cmd = "npm run start"