mirror of
https://github.com/jlengrand/leaflet-geosearch.git
synced 2026-03-10 08:31:26 +00:00
10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
/* eslint-disable no-undef, @typescript-eslint/no-var-requires */
|
|
const browserEnv = require('browser-env');
|
|
browserEnv();
|
|
|
|
const fetch = require('node-fetch');
|
|
window.fetch = global.fetch = fetch;
|
|
|
|
const leaflet = require('leaflet');
|
|
window.L = global.L = leaflet;
|