web: add shell.nix

This commit is contained in:
Dmitriy Pleshevskiy 2022-06-08 17:24:41 +03:00
parent 727d522e3a
commit a433adf48d
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
2 changed files with 5 additions and 0 deletions

1
web/.gitignore vendored
View File

@ -7,6 +7,7 @@
!/*json
!/*.ts
!/*.nix
!/(domain|repo|uikit|comp|views|translates)/*.ts
!/styles/*.scss

4
web/shell.nix Normal file
View File

@ -0,0 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = [ pkgs.nodePackages.sass ];
}