Author:
    Creation:2025-11-25Last update:2026-08-09

    Optimizing i18n Bundle Size & Performance

    One of the most common challenges with traditional i18n solutions relying on JSON files is managing content size. If developers do not manually separate content into namespaces, users often end up downloading translations for every page and potentially every language just to view a single page.

    For example, an application with 10 pages translated into 10 languages might result in a user downloading the content of 100 pages, even though they only need one (the current page in the current language). This leads to wasted bandwidth and slower load times.

    Intlayer solves this problem through build-time optimization. It analyzes your code to detect which dictionaries are actually used per component and reinjects only the necessary content into your bundle.

    Table of Contents

    Scan your bundle

    Analyzing your bundle is the first step in identifying "heavy" JSON files and code-splitting opportunities. These tools generate a visual treemap of your application's compiled code, allowing you to see exactly which libraries are consuming the most space.

    Vite / Rollup

    Vite uses Rollup under the hood. The rollup-plugin-visualizer generates an interactive HTML file showing the size of every module in your graph.

    bash
    npm install -D rollup-plugin-visualizer
    
    vite.config.ts
    import { defineConfig } from "vite";
    import { visualizer } from "rollup-plugin-visualizer";
    
    export default defineConfig({
      plugins: [
        visualizer({
          open: true, // Automatically open the report in your browser
          filename: "stats.html",
          gzipSize: true,
          brotliSize: true,
        }),
      ],
    });
    

    Next.js (Turbopack)

    For projects using the App Router and Turbopack, Next.js provides a built-in experimental analyzer that requires no extra dependencies.

    bash
    npx next experimental-analyze
    

    Next.js (Webpack)

    If you are using the default Webpack bundler in Next.js, use the official bundle analyzer. Trigger it by setting an environment variable during your build.

    bash
    npm install -D @next/bundle-analyzer
    
    next.config.js
    const withBundleAnalyzer = require("@next/bundle-analyzer")({
      enabled: process.env.ANALYZE === "true",
    });
    
    module.exports = withBundleAnalyzer({
      // Your Next.js config
    });
    

    Usage:

    bash
    ANALYZE=true npm run build
    

    Standard Webpack

    For Create React App (ejected), Angular, or custom Webpack setups, use the industry-standard webpack-bundle-analyzer.

    bash
    npm install -D webpack-bundle-analyzer
    
    webpack.config.ts
    import { BundleAnalyzerPlugin } from "webpack-bundle-analyzer";
    
    export default {
      plugins: [
        new BundleAnalyzerPlugin({
          analyzerMode: "static",
          reportFilename: "bundle-analyzer.html",
          openAnalyzer: false,
        }),
      ],
    };
    

    How It Works

    Intlayer uses a per-component approach. Unlike global JSON files, your content is defined alongside or within your components. During the build process, Intlayer:

    1. Analyzes your code to find useIntlayer calls.
    2. Builds the corresponding dictionary content.
    3. Replaces the useIntlayer call with optimized code based on your configuration.

    This ensures that:

    • If a component is not imported, its content is not included in the bundle (Dead Code Elimination).
    • If a component is lazy-loaded, its content is also lazy-loaded.

    Plugin Reference

    Intlayer's build optimization is split across several discrete plugins, each with a single responsibility. Understanding what each one does prevents confusion when wiring them up.

    Babel plugins (@intlayer/babel)

    These are used directly in babel.config.js for Webpack-based setups (Next.js with Babel, CRA, custom Webpack, etc.).

    The table below lists them in their required pipeline order (the same order they must appear in babel.config.js):

    Plugin What it does
    intlayerExtractBabelPlugin Scans .content.ts files and writes compiled dictionaries to .intlayer/
    intlayerPurgeBabelPlugin Scans all source files, removes unused content fields from compiled .intlayer/**/*.json dictionary files
    intlayerMinifyBabelPlugin Renames content field keys to short alphabetic aliases (titlea) in both JSON files and source code
    intlayerOptimizeBabelPlugin Rewrites useIntlayer('key')useDictionary(hash) and injects the matching dictionary import
    Plugin order matters. In your babel.config.js the purge and minify plugins must appear before the optimize plugin. The optimize pass replaces useIntlayer('key') with an opaque useDictionary(hash) call, erasing the dictionary-key information that the purge and minify passes need to identify which fields are used.

    Each Babel plugin has a matching options helper that reads your intlayer.config.ts once at config-load time and returns pre-resolved values:

    Options helper Used with
    getExtractPluginOptions() intlayerExtractBabelPlugin
    getPurgePluginOptions() intlayerPurgeBabelPlugin
    getMinifyPluginOptions() intlayerMinifyBabelPlugin
    getOptimizePluginOptions() intlayerOptimizeBabelPlugin

    Vite plugins (vite-intlayer)

    Vite users never configure these directly. They are wired up automatically when you call withIntlayer() in vite.config.ts. The build.purge and build.minify flags in intlayer.config.ts toggle the corresponding behaviour without any extra plugin registration.

    Internal Vite plugin Equivalent behaviour
    Usage analyzer Same as intlayerPurgeBabelPlugin analysis pass
    Dictionary prune Same as intlayerPurgeBabelPlugin JSON-write pass
    Dictionary minify Same as intlayerMinifyBabelPlugin JSON-write pass
    Babel transform Same as intlayerMinifyBabelPlugin source-code rename + intlayerOptimizeBabelPlugin

    SWC plugin (@intlayer/swc)

    Next.js users never configure these directly either. Since v9.2.1, withIntlayer() in next.config.ts runs the full pipeline — purge, minify and import rewriting — from the build.purge and build.minify flags alone.

    The work is split in two, because an SWC Wasm plugin transforms one file at a time with no file-system access:

    Pass Where it runs What it does
    Usage analysis + JSON purge/minify Node, inside withIntlayer() Reads every component source file, rewrites .intlayer/**/*.json, produces rename tables
    Source rewriting (content.title.a) @intlayer/swc (Wasm) Applies the rename tables to the matching property accesses in your code
    Import rewriting (useIntlayer → dict) @intlayer/swc (Wasm) Same as intlayerOptimizeBabelPlugin

    Deciding which fields are unused and what alias each one gets requires cross-file state and file I/O, so that half runs in Node; the SWC plugin only receives the resulting tables.

    Setup by Platform

    Next.js

    Next.js requires the @intlayer/swc plugin, because Next.js uses SWC for builds. Since v9.2.1 this single package covers the whole pipeline — optimize (import rewriting), purge and minify.

    This plugin is not installed by default because SWC plugins are still experimental for Next.js. It may change in the future.
    Next.js 16.1.0 is the minimum version. It is the first release built on SWC's forward-compatible Wasm plugin ABI; earlier releases reject the plugin. withIntlayer reads your Next.js version and simply does not register the plugin below 16.1.0 — those builds still succeed, they just run without bundle optimization.
    bash
    npm install -D @intlayer/swc
    
    Cargo.toml
    [dependencies]
    intlayer-swc-plugin = "*"
    

    View on Crates.io

    Once installed, Intlayer will automatically detect and use the plugin.

    The purge and minify passes (field removal and field renaming) require no extra package and no babel.config.js. Wrap your config with withIntlayer and toggle the flags in intlayer.config.ts:

    next.config.ts
    import { withIntlayer } from "next-intlayer/server";
    import type { NextConfig } from "next";
    
    const nextConfig: NextConfig = {/* your config */};
    
    export default withIntlayer(nextConfig);
    
    intlayer.config.ts
    import type { IntlayerConfig } from "intlayer";
    
    const config: IntlayerConfig = {
      build: {
        purge: true, // remove unused content fields from bundled JSON
        minify: true, // rename content field keys to short aliases
      },
    };
    
    export default config;
    

    During next build, withIntlayer analyzes your sources, rewrites the compiled dictionaries, and forwards the resulting field-rename tables to @intlayer/swc, which updates the matching property accesses in your code.

    Use the async withIntlayer, not withIntlayerSync. The sync variant does not run the analysis pipeline, so purge and minify have no effect with it.
    Purge and minify run on next build only — the optimize pipeline is off during next dev.
    They are also disabled when compat-adapter callers are configured (swcExtraCallers, set by the compat packages such as @intlayer/next-intl or @intlayer/react-i18next): those call sites are invisible to the usage analyzer, so purging would remove fields the code still reads. Import rewriting stays active.

    Earlier versions (before 9.2.1) required @intlayer/babel and a babel.config.js declaring intlayerPurgeBabelPlugin and intlayerMinifyBabelPlugin. That file is no longer needed and can be deleted.

    Vite

    Vite uses the @intlayer/babel plugin, which is included as a dependency of vite-intlayer. The full optimization pipeline — import rewriting, purge, and minify — is enabled by default and requires no extra plugin registration.

    Enable purge and minify by setting the corresponding flags in intlayer.config.ts:

    intlayer.config.ts
    import type { IntlayerConfig } from "intlayer";
    
    const config: IntlayerConfig = {
      build: {
        purge: true, // remove unused content fields from bundled JSON
        minify: true, // rename content field keys to short aliases
      },
    };
    
    export default config;
    

    Webpack (and Next.js with Babel)

    Install @intlayer/babel:

    bash
    npm install -D @intlayer/babel
    

    Add all four plugins to babel.config.js in the correct order:

    babel.config.js
    const {
      intlayerExtractBabelPlugin,
      intlayerPurgeBabelPlugin,
      intlayerMinifyBabelPlugin,
      intlayerOptimizeBabelPlugin,
      getExtractPluginOptions,
      getPurgePluginOptions,
      getMinifyPluginOptions,
      getOptimizePluginOptions,
    } = require("@intlayer/babel");
    
    module.exports = {
      plugins: [
        // Extract: compile .content.ts files → .intlayer/**/*.json
        [intlayerExtractBabelPlugin, getExtractPluginOptions()],
    
        // Purge: remove unused fields from .intlayer/**/*.json
        //    (reads intlayer.config.ts build.purge flag)
        [intlayerPurgeBabelPlugin, getPurgePluginOptions()],
    
        // Minify: rename field keys in JSON + source code
        //    (reads intlayer.config.ts build.minify flag)
        [intlayerMinifyBabelPlugin, getMinifyPluginOptions()],
    
        // Optimize: rewrite useIntlayer('key') → useDictionary(hash)
        //    Must come last because it erases the dictionary key.
        [intlayerOptimizeBabelPlugin, getOptimizePluginOptions()],
      ],
    };
    

    Configuration

    You can control how Intlayer optimizes your bundle via the build property in your intlayer.config.ts.

    intlayer.config.ts
    import { Locales, type IntlayerConfig } from "intlayer";
    
    const config: IntlayerConfig = {
      internationalization: {
        locales: [Locales.ENGLISH, Locales.FRENCH],
        defaultLocale: Locales.ENGLISH,
      },
      dictionary: {
        importMode: "dynamic",
      },
      build: {
        // Replace useIntlayer() calls with direct dictionary imports at build time.
        // undefined = auto (enabled in production), true = always, false = never.
        optimize: undefined,
    
        // Rename content field keys in compiled dictionaries to short alphabetic
        // aliases (e.g. title → a). Reduces JSON size; requires optimize.
        minify: true,
    
        // Remove content fields that are never accessed in source code.
        // Requires optimize.
        purge: true,
      },
    };
    
    export default config;
    
    Keeping the default value (undefined) for optimize is recommended in most cases.
    See the configuration reference for all options: Configuration

    Build Options

    Property Type Default Description
    optimize boolean / undefined undefined Enables the import-rewriting pass. undefined = active only in production builds. false disables purge and minify as well.
    minify boolean false Renames content field keys in compiled JSON files to short alphabetic aliases. Also rewrites matching property accesses in source code. Has no effect when optimize is false.
    purge boolean false Removes content fields that are never statically accessed from compiled JSON files. Has no effect when optimize is false.

    Minification (field key renaming)

    build.minify does not minify your JavaScript bundle — your bundler handles that. Instead, it shrinks the compiled dictionary JSON files by replacing every user-defined content field key with a short alphabetic alias:

    plaintext
    // Before minification
    { "title": "Hello", "subtitle": "World" }
    
    // After minification
    { "a": "Hello", "b": "World" }
    

    The same rename is applied to all property accesses in your source code, so content.title becomes content.a in the compiled output. The runtime behaviour is identical.

    intlayer.config.ts
    import type { IntlayerConfig } from "intlayer";
    
    const config: IntlayerConfig = {
      build: {
        minify: true,
      },
    };
    
    export default config;
    
    Minification is skipped when optimize is false. When editor.enabled is true it still runs, but without the field-renaming step — the visual editor resolves edits by keyPath, so the original field names have to survive.
    On Next.js, minification is also skipped when @intlayer/swc is not installed or cannot be loaded (Next.js below 16.1.0). The plugin is the half that rewrites the source accesses, so renaming the dictionaries without it would leave your code reading field names that no longer exist.
    Minification is also skipped for dictionaries loaded via importMode: 'fetch' because their JSON is served from a remote API using the original field names — renaming the client-side keys would break the server/client contract.

    Purging (unused field removal)

    build.purge analyzes which content fields are actually accessed in your source code and removes all others from the compiled JSON files.

    intlayer.config.ts
    import type { IntlayerConfig } from "intlayer";
    
    const config: IntlayerConfig = {
      build: {
        purge: true,
      },
    };
    
    export default config;
    

    Example: a dictionary with five fields where only two are used:

    plaintext
    // Before purge
    { "title": "…", "subtitle": "…", "cta": "…", "footer": "…", "badge": "…" }
    
    // After purge (only title + subtitle accessed in source)
    { "title": "…", "subtitle": "…" }
    
    Purge is skipped when optimize is false. It stays active when editor.enabled is true — a purged field is read by no component, so the editor never renders it. On Next.js it is additionally skipped when @intlayer/swc is unavailable, and when compat-adapter callers are configured.
    Purge is also skipped conservatively when a source file cannot be parsed, or when the result of useIntlayer is assigned to a variable and passed around in ways the static analyser cannot follow (e.g. spread into an object, passed as a prop without destructuring). In those cases the full dictionary is kept.

    Import Mode

    For large applications, including several pages and locales, your JSON can represent a significant part of your bundle size. Intlayer allows you to control how dictionaries are loaded using the importMode option.

    Global definition

    The import mode can be defined globally in your intlayer.config.ts file.

    intlayer.config.ts
    import type { IntlayerConfig } from "intlayer";
    
    const config: IntlayerConfig = {
      dictionary: {
        importMode: "dynamic", // Default is 'static'
      },
    };
    
    export default config;
    

    Per-dictionary definition

    You can override the import mode for individual dictionaries in their .content.{{ts|tsx|js|jsx|mjs|cjs|json|jsonc|json5|md|mdx|yaml|yml}} files.

    ts
    import { type Dictionary, t } from "intlayer";
    
    const appContent: Dictionary = {
      key: "app",
      importMode: "dynamic", // Override the default import mode
      content: {
        // ...
      },
    };
    
    export default appContent;
    
    Property Type Default Description
    importMode 'static', 'dynamic', 'fetch' 'static' Deprecated: Use dictionary.importMode instead. Determines how dictionaries are loaded (see below).

    The importMode setting dictates how the dictionary content is injected into your component. You can define it globally in intlayer.config.ts under the dictionary object, or override it per dictionary in its .content.ts file.

    1. Static Mode (default)

    In static mode, Intlayer replaces useIntlayer with useDictionary and injects the dictionary directly into the JavaScript bundle.

    • Pros: Instant rendering (synchronous), zero extra network requests during hydration.
    • Cons: The bundle includes translations for all available languages for that specific component.
    • Best for: Single Page Applications (SPA).

    Transformed Code Example:

    tsx
    // Your code
    const content = useIntlayer("my-key");
    
    // Optimized code illustration after transformation (Static)
    // This is only for illustration purposes, the actual code will be different for optimization reasons
    const content = useDictionary({
      key: "my-key",
      content: {
        nodeType: "translation",
        translation: {
          en: "My title",
          fr: "Mon titre",
        },
      },
    });
    

    2. Dynamic Mode

    In dynamic mode, Intlayer replaces useIntlayer with useDictionaryAsync. This uses import() (Suspense-like mechanism) to lazy-load specifically the JSON for the current locale.

    • Pros: Locale-level tree shaking. A user viewing the English version will only download the English dictionary. The French dictionary is never loaded.
    • Cons: Triggers a network request (asset fetch) per component during hydration.
    • Best for: Large text blocks, articles, or applications supporting many languages where bundle size is critical.

    Transformed Code Example:

    tsx
    // Your code
    const content = useIntlayer("my-key");
    
    // Optimized code illustration after transformation (Dynamic)
    // This is only for illustration purposes, the actual code will be different for optimization reasons
    const content = useDictionaryAsync({
      en: () =>
        import(".intlayer/dynamic_dictionary/my-key/en.json").then(
          (mod) => mod.default
        ),
      fr: () =>
        import(".intlayer/dynamic_dictionary/my-key/fr.json").then(
          (mod) => mod.default
        ),
    });
    
    When using importMode: 'dynamic', if you have 100 components using useIntlayer on a single page, the browser will attempt 100 separate fetches. To avoid this "waterfall" of requests, group content into fewer .content files (e.g., one dictionary per page section) rather than one per atom component. You can also use multiple .content files using the same key. Intlayer will merge them into a single dictionary.

    3. Fetch Mode

    Behaves similarly to Dynamic mode but attempts to fetch dictionaries from the Intlayer Live Sync API first. If the API call fails or the content is not marked for live updates, it falls back to the dynamic import.

    Transformed Code Example:

    tsx
    // Your code
    const content = useIntlayer("my-key");
    
    // Optimized code illustration (Fetch)
    const content = useDictionaryAsync({
      en: () =>
        fetch("https://intlayer.my-domain.com/dictionary/my-key/en").then((res) =>
          res.json()
        ),
      fr: () =>
        fetch("https://intlayer.my-domain.com/dictionary/my-key/fr").then((res) =>
          res.json()
        ),
    });
    
    See CMS documentation for more details: CMS
    In fetch mode, purge and minification are not applied because the JSON is served from a remote API using the original field names.

    Summary: Static vs Dynamic

    Feature Static Mode Dynamic Mode
    JS Bundle Size Larger (includes all langs for the component) Smallest (only code, no content)
    Initial Load Instant (Content is in bundle) Slight delay (Fetches JSON)
    Network Requests 0 extra requests 1 request per dictionary key
    Tree Shaking Component-level Component-level + Locale-level
    Best Use Case UI Components, Small Apps Pages with much text, Many Languages