Caerroff

Results 3 comments of Caerroff
trafficstars

+1. Have the same issue with NextJS 15.1.6 and react 19.0.0.

After checking the library a little more, it is said [here](https://react-leaflet.js.org/docs/start-introduction/#limitations) that they don't support SSR... I guess we won't see a check for ```typescript typeof window == 'undefined' ```...

It is working on my end with the following wrapper: ```tsx // /components/map/Map.tsx 'use client'; import { MapContainer } from 'react-leaflet' import { TileLayer } from 'react-leaflet' import "../../../../node_modules/leaflet/dist/leaflet.css" const...