NextJS Express Server Cookies
I'm facing an issue with Cookies in Next.js due to separate domains for my Express backend and Next.js. The JWT cookies set in Express aren't accessible in Next.js SSR because they have the Express Domain. Considering routing API calls through Next.js's API routes before reaching the Express server to resolve the issue. Any thoughts or alternative solutions for seamless integration? (Next.js is deployed on Vercel and Express Server on AWS)
