Monorepo for Tangled
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

flake: suppress caniuse-lite warning from tailwindcss

Standalone tailwindcss embeds frozen caniuse-lite, triggers Browserslist warning on startup. Set BROWSERSLIST_IGNORE_OLD_DATA to silence it.

Signed-off-by: eti <eti@eti.tf>

authored by

eti and committed by
Tangled
f6775b98 6a27cd25

+3 -3
+1 -1
.air/appview.toml
··· 6 6 bin = "out/appview.out" 7 7 8 8 include_ext = ["go"] 9 - exclude_dir = ["avatar", "camo", "sites", "indexes", "nix", "tmp"] 9 + exclude_dir = ["avatar", "camo", "sites", "indexes", "nix", "tmp", "node_modules"] 10 10 stop_on_error = true
+1 -2
.gitignore
··· 7 7 result 8 8 !.gitkeep 9 9 out/ 10 - ./camo/node_modules/* 11 - ./avatar/node_modules/* 10 + node_modules/ 12 11 patches 13 12 *.qcow2 14 13 .DS_Store
+1
flake.nix
··· 237 237 tailwind-watcher = 238 238 pkgs.writeShellScriptBin "run" 239 239 '' 240 + export BROWSERSLIST_IGNORE_OLD_DATA=true 240 241 ${pkgs.tailwindcss}/bin/tailwindcss --watch=always -i input.css -o ./appview/pages/static/tw.css 241 242 ''; 242 243 in {