From 4cedda9fa020184a7cae5ce28f2995bd99322cb5 Mon Sep 17 00:00:00 2001 From: Mark Henderson Date: Mon, 16 Feb 2026 14:57:46 -0800 Subject: [PATCH] Add Nixpacks config with Node 22 and npm install Co-authored-by: Cursor --- .nixpacks.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .nixpacks.toml diff --git a/.nixpacks.toml b/.nixpacks.toml new file mode 100644 index 0000000..f91a820 --- /dev/null +++ b/.nixpacks.toml @@ -0,0 +1,11 @@ +[phases.setup] +nixPkgs = ["nodejs-22_x"] + +[phases.install] +cmd = "npm install" + +[phases.build] +cmd = "npm run build" + +[start] +cmd = "npm start"