Does anyone consume a django api with next js?
Next automatically redirects requests with a trailing backslash to one without.
https://nextjs.org/docs/api-reference/next.config.js/trailing-slash
Django automatically adds a slash to urls without one
https://docs.djangoproject.com/en/3.2/ref/settings/#append-slash
Causing infinite loops. Do you all handle the missmatch in next or in django?