chore: remove Supabase dependency completely

This commit is contained in:
maulanasdqn
2026-01-21 20:52:03 +07:00
parent 3f30fbe89c
commit ae1864c134
6 changed files with 5 additions and 174 deletions
+2 -2
View File
@@ -12,7 +12,7 @@
pkgs = import nixpkgs { inherit system; };
# NPM dependencies hash (update with: nix run nixpkgs#prefetch-npm-deps -- package-lock.json)
npmDepsHash = "sha256-qJdZprh14BOP1oZXZ32A7cJDKh0fKZ1cuppgmOeBt1w=";
npmDepsHash = "sha256-bz8Q/d08FZtVElksXMvi90xrCCetTMQmzWCwU0W/vbg=";
# Import helpers
mkViteApp = import ./nix/mkViteApp.nix {
@@ -111,7 +111,7 @@
mkHackathonWithEnv = envVars: import ./nix/mkViteApp.nix {
pkgs = final;
src = self;
npmDepsHash = "sha256-qJdZprh14BOP1oZXZ32A7cJDKh0fKZ1cuppgmOeBt1w=";
npmDepsHash = "sha256-bz8Q/d08FZtVElksXMvi90xrCCetTMQmzWCwU0W/vbg=";
} { name = "hackathon"; buildScript = "hackathon:build"; inherit envVars; };
};
};