commit bootstrapped react so that flake can track

This commit is contained in:
2025-11-08 13:23:57 -06:00
parent 9adb8c9274
commit 9b172957a2
22 changed files with 17959 additions and 3 deletions
+7 -3
View File
@@ -10,13 +10,17 @@
pkgs = nixpkgs.legacyPackages.${system};
reactApp = pkgs.buildNpmPackage {
name = "React Frontend";
pname = "React Frontend";
version = "0.1.0";
src = "./.";
npmRoot = "frontend";
src = ./frontend;
npmDepsHash = "";
# TODO: Configure npm building of frontend
nativeBuildInputs = with pkgs; [
vite
nodejs
];
};