From c7a798043fa503b42b79aecdf277ed8b14991512 Mon Sep 17 00:00:00 2001 From: naja Date: Mon, 2 Jun 2025 03:27:03 +0000 Subject: [PATCH] Add nixpacks.toml --- nixpacks.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 nixpacks.toml diff --git a/nixpacks.toml b/nixpacks.toml new file mode 100644 index 0000000..6804fa1 --- /dev/null +++ b/nixpacks.toml @@ -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"