I'm new to React, NextJS, and Npm, I recently created a Next app using this command:
npx create-next-app@latest
And now I want to add Strapi to the same project. I used this command to install Strapi:
npx create-strapi-app@latest my-project --quickstart
Using this command, it will create a new project, for Strapi.
I see that the Next and the Strapi projects share a lot of files, such as the files in the node_modules folder. Is there a way to have those in the same project? or would that make a mess?