Next.js Discord

Discord Forum

Disable SSR

Unanswered
Black Phoebe posted this in #help-forum
Open in Discord
Black PhoebeOP
How to disable SSR for a specific Page in Next.js? (Xterm doesnt work with SSR)

I tried
const ConsoleDynamic = dynamic(() => import("@/components/terminal/console"), {
  ssr: false,
})


but then this happens:

8 Replies

Asiatic Lion
"use client"
Black PhoebeOP
alr added
Asiatic Lion
first load will be ssr anyways
you can: export const dynamic = "force-dynamic" but still first load will be ssr'ed
Black PhoebeOP
ig. currently ssr isn't the problem my problem is the dupicaation of my component
Black PhoebeOP
I fixxed it
@Black Phoebe I fixxed it
how did you fix it?