Next.js App Router + Static Exports(output: "export"
) + i18n(next-intl)
This is an example of how to use Next.js App Router with Static Exports and i18n. Full static i18n website with Next.js App Router and Static Exports.
Structure:
app/
- [locale]
- page.tsx
- sub/
- page.tsx
messages/
- en.json
- de.json
- ja.json
Output: npm run build
out/
- en/
- index.html
- sub/
- index.html
- de/
- index.html
- sub/
- index.html
- ja/
- index.html
- sub/
- index.html
- en.html
- de.html
- ja.html
As a result, user can access the page with the following URL:
https://your-site.example/en/
https://your-site.example/de/
https://your-site.example/ja/
Error: Page "/[locale]/page" is missing param "/favicon.ico" in "generateStaticParams()", which is required with "output: export" config.
on npm run dev
You need to put favicon.ico
in public/
directory.
First, run the development server:
npm ci
npm run dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Inter, a custom Google Font.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.