惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
腾讯CDC
Y
Y Combinator Blog
L
LangChain Blog
B
Blog
U
Unit 42
P
Proofpoint News Feed
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
Vercel News
Vercel News
雷峰网
雷峰网
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Migrating a Vite i18n App to Next.js Without Breaking Eve...
Digital dev · 2026-06-15 · via DEV Community

Digital dev

Introduction

Internationalization (i18n) is one of those features that feels simple until you have to change your underlying architectural framework. If you've been building a Single Page Application (SPA) with Vite and react-i18next, you've likely enjoyed a fast developer experience and client-side translation loading.

However, as applications grow, SEO requirements and Initial Page Load metrics often push developers toward Next.js. The shift from Vite’s purely client-side environment to Next.js's specialized server-side capabilities introduces unique challenges for i18n—specifically regarding hydration mismatches and routing. In this guide, we will walk through the strategy for migrating your localization logic without breaking your user experience.

The Core Difference: CSR vs. SSR i18n

In a Vite application, i18n usually happens entirely on the client. You initialize i18next, load JSON files via an HTTP backend, and the library handles the switch.

In Next.js (App Router), internationalization is ideally handled via Middleware and Server Components. Instead of the browser detecting the language and showing a loading spinner while the JSON loads, the server detects the locale from the URL or headers and serves the pre-rendered content in the correct language immediately.

Step 1: Mapping Your Routing Strategy

Vite apps often use react-router-dom with a strategy where the locale is either in the state or a simple URL prefix.

In Next.js, the standard approach is using dynamic segments: /[locale]/your-page. You'll need to move your src/pages to app/[locale]/.

The Middleware Approach

Create a middleware.ts file in your root to handle locale detection:

import { NextResponse } from 'next/server';
import type { NextRequest } from 'next/server';

const locales = ['en', 'es', 'fr'];

export function middleware(request: NextRequest) {
  const pathname = request.nextUrl.pathname;
  const pathnameIsMissingLocale = locales.every(
    (locale) => !pathname.startsWith(`/${locale}/`) && pathname !== `/${locale}`
  );

  if (pathnameIsMissingLocale) {
    const locale = 'en'; // Detect from headers if preferred
    return NextResponse.redirect(
      new URL(`/${locale}${pathname}`, request.url)
    );
  }
}

export const config = {
  matcher: ['/((?!api|_next/static|_next/image|favicon.ico).*)'],
};

Step 2: From react-i18next to next-intl or i18next-ssr

While you can use react-i18next in Next.js, the community has largely moved toward next-intl or specialized SSR setups for i18next to avoid the dreaded "Flash of Unlocalized Content" (FOUC).

If you have a massive codebase and want to automate the structural heavy lifting of this transition, tools like ViteToNext.AI can help convert your Vite component patterns into Next.js compatible structures automatically.

Accessing Translations in Server Components

Instead of the useTranslation hook (which requires a Client Component), you will now use asynchronous functions to fetch dictionaries:

// lib/get-dictionary.ts
const dictionaries = {
  en: () => import('../dictionaries/en.json').then((module) => module.default),
  es: () => import('../dictionaries/es.json').then((module) => module.default),
};

export const getDictionary = async (locale: 'en' | 'es') => dictionaries[locale]();

And inside your page.tsx:

export default async function Page({ params: { locale } }) {
  const dict = await getDictionary(locale);
  return <button>{dict.products.cart}</button>;
}

Step 3: Handling Client-Side Interactivity

You will still need hooks for components that change state (like a language switcher). For these cases, you must wrap your component in a I18nProvider.

  1. Extract the dictionary on the server.
  2. Pass it to a Client Component provider.
  3. Consume it via hooks like useTranslations().

This ensures that even when the user interacts with the page, the translation context is fully available without a network request to a translation backend.

Step 4: Refactoring Static Assets

In Vite, your translation files likely live in public/locales. In Next.js, while they can stay in public, it is technically more performant to keep them in a dictionaries folder outside of public if you are using Server Components to import them. This prevents the translation keys from being public-facing URLs and allows for better bundling of only the required languages.

Common Pitfalls to Avoid

  1. Hydration Errors: This happens if the server renders one language and the client tries to switch to another immediately. Ensure your <html> tag has the correct lang attribute assigned from the server.
  2. SEO Metadata: Don't forget to update your layout.tsx to include metadata that changes based on the locale. Next.js makes this easy with the generateMetadata function.
  3. Environment Variables: If your i18n logic used import.meta.env, remember to switch to process.env or NEXT_PUBLIC_ for client-side variables.

Conclusion

Moving an i18n app from Vite to Next.js is more than a simple file move; it's a shift from "loading translations" to "serving translations." By utilizing Middleware for routing and Server Components for dictionary fetching, you significantly improve your LCP and SEO while providing a smoother experience for your global users.

While the manual refactoring of hooks to async functions takes time, the performance gains and the power of the Next.js ecosystem make it a worthy investment for any growing application.

Further reading: Explore how to automate your framework transition at vitetonext.codebypaki.online.