diff --git a/nix/landing.nix b/nix/landing.nix index fc5aec1..13174e8 100644 --- a/nix/landing.nix +++ b/nix/landing.nix @@ -23,6 +23,8 @@ pkgs.buildNpmPackage { export NO_COLOR=1 export TERM=dumb export NX_SKIP_NX_CACHE=true + export NX_TASKS_RUNNER_DYNAMIC_OUTPUT=false + export NX_NATIVE=false npm run landing:build runHook postBuild ''; diff --git a/nix/mkViteApp.nix b/nix/mkViteApp.nix index ba5be0f..0da24e8 100644 --- a/nix/mkViteApp.nix +++ b/nix/mkViteApp.nix @@ -24,6 +24,8 @@ pkgs.buildNpmPackage { export NO_COLOR=1 export TERM=dumb export NX_SKIP_NX_CACHE=true + export NX_TASKS_RUNNER_DYNAMIC_OUTPUT=false + export NX_NATIVE=false ${pkgs.lib.concatStringsSep "\n" (pkgs.lib.mapAttrsToList (k: v: "export ${k}=\"${v}\"") envVars)} npm run ${buildScript} runHook postBuild