My website is built using the Minimal TypeScript Starter, and I have documents available in two languages (en-us as the defaultLocale and fr-fr). The UIDs for each language are consistent.
I've carefully followed all the steps mentioned in the guide, but I'm encountering a persistent issue where the requests consistently fail with a 404 error.
I took a quick look, and I was able to get your project working when I removed i18n configuration from the next.config.js file. I guess it was interfering with the setup shown in the blog post. And FYI, there is a link at the end of the blog post to the final website code that you can use for future troubleshooting. That's how I was able to find the difference in the next config file.
I found the same conclusions this morning thanks !
My IDE was not pointing the error until i fix the next.config file !
After that i was able to progress, thanks for your answer !
@Levi It seems that in production something is going wrong.
A request return a 500 ([GET] /?nxtPlang=en-us status=500)
a function /[lang] is returning this:
RefNotFoundError: Ref not found. Ensure you have the correct ref and try again. Master ref is: ZW2tZhAAACMA0iw_
at Client.fetch (/var/task/.next/server/chunks/5760.js:1:13735)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async Client.getFirst (/var/task/.next/server/chunks/5760.js:1:6382)
at async Client.getByUID (/var/task/.next/server/chunks/5760.js:1:7152)
at async Index (/var/task/.next/server/app/[lang]/page.js:1:2263) {
url: 'https://nicolasfiascaro.cdn.prismic.io/api/v2/documents/search?q=%5B%5Bat%28document.type%2C+%22page%22%29%5D%5D&q=%5B%5Bat%28my.page.uid%2C+%22home%22%29%5D%5D&lang=en-us&pageSize=1&ref=ZV3LmxAAACYA8b39&routes=%5B%7B%22type%22%3A%22page%22%2C%22uid%22%3A%22home%22%2C%22path%22%3A%22%2F%3Alang%3F%22%7D%2C%7B%22type%22%3A%22page%22%2C%22path%22%3A%22%2F%3Alang%3F%2F%3Auid%22%7D%2C%7B%22type%22%3A%22project%22%2C%22path%22%3A%22%2F%3Alang%3F%2Fprojects%2F%3Auid%22%7D%5D',
response: {
type: 'api_notfound_error',
message: 'Ref not found. Ensure you have the correct ref and try again. Master ref is: ZW2tZhAAACMA0iw_'
}
}