From 4ec46ded1a71d9e89fa6d49c75dff1c7ca6be456 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 20 Nov 2021 00:11:38 +0100 Subject: [PATCH] nix: fix production build --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 518dda4..972c202 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ { production = pkgs.npmlock2nix.build { src = ./.; - installPhase = "cp -r dist $out"; + installPhase = "cp -r public/build $out"; buildCommands = [ "npm run build" ]; }; shell = import ./shell.nix { inherit pkgs; };