Relative Content

Tag Archive for next.jslocalizationinternationalizationreact-i18nextnext-intl

Unable to find `next-intl` locale because the middleware didn’t run on this request

//middlware.ts import createMiddleware from “next-intl/middleware”; import { defaultLocale, supportedLocales } from “./i18n”; export default createMiddleware({ locales: supportedLocales, defaultLocale, localeDetection: true, }); export const config = { matcher: [“/”, “/(de|en)/:path*”], }; Unable to find next-intl locale because the middleware didn’t run on this request. See https://next-intl-docs.vercel.app/docs/routing/middleware#unable-to-find-locale. The notFound() function will be called as a result. GET […]