// Sets window.L from the imported leaflet module. // Required because esbuild bundles everything in a "use strict" IIFE, // causing the leaflet UMD to take the CommonJS path instead of setting // window.leaflet. Plugins and hooks expect window.L to exist. import * as leafletModule from "../vendor/js/leaflet-minimal.js"; window.L = leafletModule;