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
11 lines
141 B
Nix
11 lines
141 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
nodejs_20
|
|
bun
|
|
dotnetCorePackages.sdk_9_0_3xx
|
|
];
|
|
}
|