Replies: 1 comment 6 replies
-
I think this issue is related and has a similar setup to what you want: #10389 (comment) . This comment seems to suggest it can work as long as you ensure you install v5. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm editing my Nextjs project to migrate to the app folder. While doing this, I thought it would be good to get rid of redux, which was causing me a lot of problems, and decided to use auth.js. Due to build problems caused by SSG, I am using a separate nodejs project for the backend.
I don't want to use any API routes in Nextjs because I have an obsession with everything being neat and clean. I want to handle the API and server-side operations in the Nodejs project as much as possible.
TL;DR, I want to do auth operations with Express.js on my Node.js server. But the rest of my project will be on Nextjs.
Is it possible to do this? If possible, can you share a short example that explains the logic?
Beta Was this translation helpful? Give feedback.
All reactions