Rework to a svelte project

This commit is contained in:
2026-06-05 23:04:28 -05:00
parent 1d105a3bfa
commit 8d211da476
20 changed files with 1535 additions and 123 deletions

22
flake.nix Normal file
View File

@@ -0,0 +1,22 @@
{
description = "Development environment for VSSM Web UI Dashboard";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nodejs_22
pnpm
];
};
});
}