Files
Fable.OpenLayers/shell.nix
Moritz Jörg 854fecd670 feat: Add Controls/FullScreen bindings
Provides a button that when clicked fills up the full screen with the map.
It is supported by 82% of browser [ref](https://caniuse.com/fullscreen).

Also changes TargetFramework to netstandard2.1 for better compat
2025-08-19 16:14:41 +02:00

11 lines
141 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
packages = with pkgs; [
nodejs_20
bun
dotnetCorePackages.sdk_9_0_3xx
];
}