Client Side Links Between Applications #16750
-
Basic question, instead of running two applications/parts of the site in one project, we are talking about splitting the project out into two separate Next.js applications. But if I am running two different Next.js applications, can I do Client-Side Linkage between applications? |
Beta Was this translation helpful? Give feedback.
Answered by
jamesmosier
Sep 1, 2020
Replies: 1 comment
-
Unfortunately if they are 2 separate Next apps that won't work. Currently the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jamesmosier
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unfortunately if they are 2 separate Next apps that won't work. Currently the
next/router
logic is dependent on all pages being a child of the root where Next gets mounted. In this case it would be 2 separate apps that are mounted at 2 different roots.