diff options
-rw-r--r-- | boilerplate/typescript/default.nix | 2 | ||||
-rw-r--r-- | website/goals/default.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/boilerplate/typescript/default.nix b/boilerplate/typescript/default.nix index b7aaf0a57763..f4d3318439d1 100644 --- a/boilerplate/typescript/default.nix +++ b/boilerplate/typescript/default.nix @@ -11,7 +11,7 @@ pkgs.stdenv.mkDerivation { # parcel.js needs number of CPUs PARCEL_WORKERS = "1"; buildPhase = '' - npx parcel build $src/index.html + npx parcel build src/index.html --public-url ./ ''; installPhase = '' mv dist $out diff --git a/website/goals/default.nix b/website/goals/default.nix index 4337d3f0ce65..696b63375efb 100644 --- a/website/goals/default.nix +++ b/website/goals/default.nix @@ -11,7 +11,7 @@ pkgs.stdenv.mkDerivation { # parcel.js needs number of CPUs PARCEL_WORKERS = "1"; buildPhase = '' - npx parcel build src/index.html + npx parcel build src/index.html --public-url ./ ''; installPhase = '' mv dist $out |