#Dynamic route in parallel route is always not found with out client redirection although i have conf
1 messages · Page 1 of 1 (latest)
Based on the information provided in the extracts, it seems that you're experiencing an issue with dynamic routes in parallel routes in Next.js.
In one of the extracts, a user mentioned that they were able to resolve a similar issue by setting dynamic = "error" and dynamicParams = true in the route config. This made the route be considered as "Static". Here's the code snippet from the extract:
export const dynamic = "error";
export const dynamicParams = true;
However, it's important to note that the behavior of dynamic routes can be influenced by other factors as well. For example, another user mentioned that when no route config is specified, the default behavior of Next.js seems to be to not cache the route at all.
If you're still experiencing issues, it might be helpful to provide more information or context about your specific setup and configuration.
For more information on dynamic routes in Next.js, you can refer to the official Next.js documentation (https://nextjs.org/docs/routing/dynamic-routes).
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
@winter night kapa.ai is still learning and improving, please let us know how it did by reacting below