0
0
NextJSframework~20 mins

Locale detection strategies in NextJS - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Locale Detection Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
component_behavior
intermediate
2:00remaining
How does Next.js detect locale using the Accept-Language header?
In Next.js, when using internationalized routing, how does the framework use the Accept-Language HTTP header to detect the user's locale?
ANext.js ignores the <code>Accept-Language</code> header and always defaults to the first locale in the configuration.
BNext.js requires manual parsing of the <code>Accept-Language</code> header in a custom middleware to detect locale.
CNext.js uses the <code>Accept-Language</code> header only on the client side after hydration to update the locale dynamically.
DNext.js reads the <code>Accept-Language</code> header on the server and matches the first supported locale from the header's list to set the locale.
Attempts:
2 left
💡 Hint
Think about how Next.js handles locale detection on the server before rendering.
state_output
intermediate
2:00remaining
What locale is set when cookie and Accept-Language conflict?
Consider a Next.js app configured with locales ['en', 'fr']. The user has a cookie NEXT_LOCALE=fr but their browser sends Accept-Language: en-US,en;q=0.9. Which locale will Next.js use for rendering the page?
ANext.js will default to the first locale in the config, <code>en</code>, ignoring both cookie and header.
BThe locale from the cookie, <code>fr</code>, is used because cookies have higher priority.
CThe locale from the <code>Accept-Language</code> header, <code>en</code>, is used because it reflects the browser preference.
DNext.js will throw an error due to conflicting locale sources.
Attempts:
2 left
💡 Hint
Think about how Next.js prioritizes locale sources.
📝 Syntax
advanced
2:30remaining
Identify the correct middleware code for locale detection
Which middleware code snippet correctly detects the locale from the Accept-Language header and redirects to the matching locale path in Next.js 14+?
A
import { NextResponse } from 'next/server';
export function middleware(request) {
  const acceptLang = request.headers.get('accept-language');
  const locale = acceptLang?.split(',')[0].split('-')[0] || 'en';
  return NextResponse.redirect(new URL(`/${locale}`, request.url));
}
B
import { NextResponse } from 'next/server';
export function middleware(request) {
  const locale = request.headers['accept-language'].split(',')[0];
  return NextResponse.redirect(`/${locale}`);
}
C
import { NextResponse } from 'next/server';
export function middleware(request) {
  const locale = request.headers.get('accept-language').split(',')[0];
  return NextResponse.redirect(new URL(`/${locale}`, request.url));
}
D
import { NextResponse } from 'next/server';
export function middleware(request) {
  const acceptLang = request.headers.get('accept-language');
  const locale = acceptLang.split(';')[0];
  return NextResponse.redirect(new URL(`/${locale}`, request.url));
}
Attempts:
2 left
💡 Hint
Remember to safely access headers and parse the language code correctly.
🔧 Debug
advanced
2:30remaining
Why does locale detection fail in this Next.js middleware?
Given this middleware code snippet, why does locale detection fail and always redirect to '/en' regardless of the browser language?
import { NextResponse } from 'next/server';
export function middleware(request) {
  const acceptLang = request.headers.get('accept-language');
  const locale = acceptLang.split(',')[0];
  if (!['en', 'fr'].includes(locale)) {
    return NextResponse.redirect(new URL('/en', request.url));
  }
  return NextResponse.next();
}
AThe code does not handle the case when <code>acceptLang</code> is null, causing a runtime error and fallback to '/en'.
BThe middleware does not return a response for valid locales, causing Next.js to default to '/en'.
CThe locale extracted includes region codes like 'en-US', which do not match 'en' or 'fr' exactly, causing the redirect.
DThe <code>includes</code> check is case-sensitive but the locale is always uppercase, causing mismatch.
Attempts:
2 left
💡 Hint
Look closely at how the locale string is extracted and compared.
🧠 Conceptual
expert
3:00remaining
What is the best practice for locale detection in Next.js 14+ with App Router?
In Next.js 14+, what is the recommended best practice for detecting and setting the user's locale for internationalized routing?
AUse the built-in Next.js i18n routing with <code>next.config.js</code> locales and rely on automatic detection via <code>Accept-Language</code> header and cookies, combined with middleware for redirects.
BManually parse the <code>Accept-Language</code> header in every server component and set locale state accordingly without using Next.js i18n config.
CUse client-side JavaScript to detect browser language and then reload the page with the correct locale path.
DDisable Next.js i18n routing and handle all locale detection and routing logic in custom Express.js middleware.
Attempts:
2 left
💡 Hint
Think about how Next.js integrates locale detection with routing and middleware.