Replies: 1 comment 4 replies
-
To clarify. If you have dynamic pages, you have to fetch the dynamic values and generate static paths. This is something that is well documented on Nextjs: https://nextjs.org/docs/pages/api-reference/functions/get-static-paths |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have configured next-i18next according to this example:
https://github.com/saltyshiomix/nextron/tree/main/examples/with-next-i18next
but maybe I didn't fully understand how to use dynamic routes with this configuration.
If i use
it breaks the app.
That's how it works well:
it turns out that I need to get all the ids on the server.
I used it on the page, but I can't use it on the server function.
window.electronAPI.getProjects()
So I have to transfer all the code from here background.js ?
Beta Was this translation helpful? Give feedback.
All reactions