website-front/shell.nix
Arthur Wambst f1b99c9509
All checks were successful
Build / build-check (pull_request) Successful in 38s
tried to fix lockfile
2025-07-10 15:34:40 +02:00

17 lines
314 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.pnpm
pkgs.nodejs_24
pkgs.nodePackages.tailwindcss
pkgs.nodePackages.postcss
pkgs.nodePackages.autoprefixer
];
shellHook = ''
echo " Environnement Node.js avec Tailwind, PostCSS et Autoprefixer prêt !"
'';
}