Extreme optimize + bug fixes + prerendering fix + more deprecation
Some checks failed
Rebuild signaller for deprived.dev to rebuild site / test_service (push) Failing after 1s

This commit is contained in:
BOTAlex 2025-10-02 07:36:41 +02:00
parent 28eea2d035
commit 4e2fe3700d
53 changed files with 324 additions and 1775 deletions

View file

@ -29,11 +29,10 @@
devShells.default = pkgs.mkShell {
buildInputs = [ node ];
shellHook = ''
set -euo pipefail
export npm_config_cache="$PWD/.npm-cache"
if [ -f package-lock.json ]; then cmd=ci; else cmd=install; fi
echo " npm $cmd (dev shell)"
${node}/bin/npm "$cmd"
# if [ -f package-lock.json ]; then cmd=ci; else cmd=install; fi
# echo "→ npm $cmd (dev shell)"
# ${node}/bin/npm "$cmd"
'';
};