Skip to content

Commit

Permalink
ignore js in the public site
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Dec 13, 2022
1 parent 5ddc1af commit 274948e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Expand Up @@ -14,7 +14,7 @@
packages.bytes-zone-public = pkgs.stdenv.mkDerivation {
name = "bytes.zone-public";
src = builtins.filterSource
(path: type: builtins.match ".+(png|css)$" path == null) ./.;
(path: type: builtins.match ".+(png|css|js)$" path == null) ./.;

buildInputs = [ pkgs.zola pkgs.nodePackages.html-minifier ];
buildPhase = ''
Expand Down

0 comments on commit 274948e

Please sign in to comment.