Next.js Discord

Discord Forum

get from Cookie

Unanswered
Chestnut-backed Chickadee posted this in #help-forum
Open in Discord
Chestnut-backed ChickadeeOP
I want locale get from cookie
import { createTranslator } from "next-intl";

const locale = 'en'
const messages = require(@/data/translations/${locale}.json);

export const t = createTranslator({ locale: locale, messages });

I checked import { cookies } from "next/headers"; , but its gives error. Any solution?

1 Reply

Where do you import it, are you sure to be familiar with App Router, RSC and such ?