Internationalization
Configuration
Shared i18n configuration
Core API Only
For framework integration guide, see Internationalization.
Define Config
Fumadocs core provides necessary middleware and utilities for i18n support.
You can define a config to share between utilities.
import { defineI18n } from 'fumadocs-core/i18n';
export const i18n = defineI18n({
defaultLanguage: 'en',
languages: ['en', 'cn', 'vi'],
});Hide Locale Prefix
To hide the locale prefix (e.g. /en/page -> /page), use the hideLocale option.
import { defineI18n } from 'fumadocs-core/i18n';
export const i18n = defineI18n({
defaultLanguage: 'en',
languages: ['en', 'cn'],
hideLocale: 'default-locale',
});| Mode | Description |
|---|---|
always | Always hide the prefix, detect locale from cookies |
default-locale | Only hide the default locale |
never | Never hide the prefix (default) |
Using always
On always mode, locale is stored as a cookie (set by the middleware), which isn't optimal for static sites.
This may cause undesired cache problems, and need to pay extra attention on SEO to ensure search engines can index your pages correctly.
Fallback Language
The fallback language to use when translations are missing for a page, default to your defaultLanguage.
Supported:
- A language in your
languagesarray. - When set to
null, no fallback will be used.
import { defineI18n } from 'fumadocs-core/i18n';
export const i18n = defineI18n({
languages: ['en', 'cn'],
defaultLanguage: 'en',
fallbackLanguage: 'cn',
});How is this guide?
Last updated on
