I'm not sure what might go wrong when I have to integrate a django API (built using JsonResponse and without extra frameworks) with a frontend, in this case, Next.js.
I built a django API using JsonResponse (void of DRF). I want to build a frontend client with Next.js that would make API calls to my django API. My questions are:
- Will I have to run both django and next.js servers at the same time to execute the full project?
- I think I would face some challenge with csrf token, what other challenges may I face having built my API without an API framework as Django Rest Framework?