Back to Withastro

i18n Not Enabled

src/content/docs/en/reference/errors/i18n-not-enabled.mdx

latest820 B
Original Source

import DontEditWarning from '~/components/DontEditWarning.astro'

<DontEditWarning />

i18nNotEnabled: The astro:i18n module cannot be used without enabling i18n in your Astro config.

What went wrong?

The astro:i18n module cannot be used without enabling i18n in your Astro config. To enable i18n, add a default locale and a list of supported locales to your Astro config:

js
import { defineConfig } from 'astro'
export default defineConfig({
 i18n: {
	 locales: ['en', 'fr'],
	 defaultLocale: 'en',
	},
})

For more information on internationalization support in Astro, see our Internationalization guide.

See Also: