Simple React App inside a Nextjs folder/route??? #14832
-
I know it is possible to do app nesting with nextjs as your documentation says with multizones, but is it possible to do it with an app with create-react-app or custom webpack react-app? example:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I would recommend using Next.js for every part of your application. It can handle any use case you have. Whether it is a ton of dynamic forms, a dashboard, a blog, an ecommerce site, anything. Next allows you to opt-in to the various features per page. So if you want some pages to be server rendered then it can do that or if you want some to just be client side rendered it can do that too. Also, there is no way for Next to do "app nesting" of other frameworks. Next is the framework and combining other frameworks with Next will not work. |
Beta Was this translation helpful? Give feedback.
I would recommend using Next.js for every part of your application. It can handle any use case you have. Whether it is a ton of dynamic forms, a dashboard, a blog, an ecommerce site, anything. Next allows you to opt-in to the various features per page. So if you want some pages to be server rendered then it can do that or if you want some to just be client side rendered it can do that too.
Also, there is no way for Next to do "app nesting" of other frameworks. Next is the framework and combining other frameworks with Next will not work.