From 49985ba8d137397dd0bd00bcf269f0da5d898ae0 Mon Sep 17 00:00:00 2001 From: Priyanka Punukollu Date: Sun, 1 Mar 2026 11:17:41 -0600 Subject: [PATCH] fix: remove invalid npm-9_x from nixpacks, use node provider only Made-with: Cursor --- nixpacks.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixpacks.toml b/nixpacks.toml index acb23c5b3..12c80e8ef 100644 --- a/nixpacks.toml +++ b/nixpacks.toml @@ -1,7 +1,7 @@ providers = ["node"] [phases.install] -cmds = ["npm install --legacy-peer-deps --ignore-scripts"] +cmds = ["npm cache clean --force && npm install --legacy-peer-deps"] [phases.build] -cmds = ["npx prisma generate && npm run build:production"] +cmds = ["npm run build:production"]