Ryo Kamimura
Results
1
comments of
Ryo Kamimura
If you're using Next.js, you may be able to resolve this by using [`next/dynamic`](https://nextjs.org/docs/app/building-your-application/optimizing/lazy-loading#nextdynamic). From ```typescript import { ResponsiveLine } from "@nivo/line"; ``` to ```typescript import dynamic from "next/dynamic"; const...