Igor Filimonov
Igor Filimonov
> I think I know where the problem is, now I have a couple of questions for u: > > 1. are u using `` component with the `theme={{ mode:...
I'm using Next.js version `15.0.2`. I solved this problem by simply adding `export const dynamic = 'force-static'`. Here is my robots.ts file: ```tsx import type { MetadataRoute } from 'next'...
I solved a similar problem using `next/dynamic`. Perhaps my code can be useful to you. Importing a Component: ``` import dynamic from 'next/dynamic' const DynamicDarkThemeToggle = dynamic(() => import('flowbite-react').then((mod) =>...