20 lines
390 B
TOML
20 lines
390 B
TOML
# 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"
|