Replies: 1 comment 1 reply
-
|
Hi @levu304 . Are you trying to make url translation for pages ? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, i'm using v10.1.0, i tried to rewrite language path in next.config.js but it's not work. It's not a bug but can anyone help me, what is wrong with my code. Thanks
This is my code
// next-i18next.config.js
module.exports = { i18n: { defaultLocale: "vi", locales: ["en", "vi", "jp"], localeDetection: false, }, };// next.config.js
rewrites: async () => [ { source: "/:lang{/}?", destination: "/", }, { source: "/:lang/:path*", destination: "/:path*", }, ],Beta Was this translation helpful? Give feedback.
All reactions