From c6ef3e219564bdd80a814346dbcd4bfe48de0479 Mon Sep 17 00:00:00 2001 From: zhadaarsita Date: Sat, 20 Sep 2025 11:20:22 +0700 Subject: [PATCH] fix: correct nixpacks build phase and packages --- nixpacks.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixpacks.toml b/nixpacks.toml index 854e8ad..367bb3a 100644 --- a/nixpacks.toml +++ b/nixpacks.toml @@ -1,5 +1,5 @@ [phases.setup] -nixPkgs = ["php83", "nodejs_20", "composer"] +nixPkgs = ["php83", "nodejs_20"] [phases.build] -cmds = ["npm install", "npm run build"] \ No newline at end of file +cmds = ["composer install --no-dev --optimize-autoloader", "npm install", "npm run build"] \ No newline at end of file