QueraTeam / django-nextjs

Next.js integration for Django projects
MIT License
341 stars 17 forks source link

Add redirect support #2

Closed ISilviu closed 2 years ago

ISilviu commented 2 years ago

Currently, redirects received from the NextJS server are not supported. More specifically, I'm referring to this kind of redirects:

image

I have roughly added support for 308 codes, yet the implementation is not tested nor does it feel complete. Could you please guide me on how to complete this implementation?

danialkeimasi commented 2 years ago

Hi Silviu, thank you for your contribution. I've implemented this in 8e2344c990506a606b79b0579a9eb36335c8ad58 since it was easier to implement than explain. Hope that it's going to be useful.

ISilviu commented 2 years ago

Hi Danial,

Thank you for the solution, looking forward to using it!