ef8e0d1bfa
The package consistently throws 'L.GridLayer.GoogleMutant is not a constructor' due to L-instance conflicts in the webpack bundle, despite multiple workaround attempts. Removed package, transpilePackages entry, type stub, env var, and all related component code. Traffic overlay dropped; geocoding (backend) unaffected.
8 lines
168 B
JavaScript
8 lines
168 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
transpilePackages: ["leaflet", "react-leaflet"],
|
|
};
|
|
|
|
export default nextConfig;
|