This commit is contained in:
mtgmonkey 2025-04-24 22:32:10 -04:00
commit f4e4e2eae1
30 changed files with 11452 additions and 0 deletions

9
frontend/shell.nix Normal file
View file

@ -0,0 +1,9 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.elmPackages.elm
pkgs.elmPackages.elm-format
pkgs.uglify-js
pkgs.ungoogled-chromium
];
}