The app part works but I have recently introduced a rest endpoint into this mix.
Locally I can hit the endpoint through localhost:3000/api/bookings but when I try to perform the post to the production site I get a 308 Permanent redirect.
Is there something specific that I have to enable or set somewhere to get it to work on the Vercel hosting?
I’ve seen some posts where the solution was to add www in front of the url in the request but since this is running on subdomain already this is not an option.
Welcome to the Vercel community! It’s great to have you here and we’re glad that you’re enjoying using Next.js and Vercel
Usually the 308 Permanent Redirect indicates that the request is being redirected, likely due to misconfiguration of the domain settings or the Next.js API routes. To help troubleshoot, here are some things to try:
Verify your domain settings - how have you set it up?
Do you have a next.config.js configured? Make sure it’s properly configured handle API routes. A good example:
Do you have any rewrites configured that could be causing this?
You can use tools like cURL or Postman to test your API endpoint directly. This can help you verify if the issue is with the endpoint itself or with the way the request is being made from the client-side.
Those are just starter points to try out! I’ll also leave this open for any community members who may be able to help.
There should not be a redirect. I am making use of the route handlers. I make use of the following structure:
src/app/api/bookings/route.ts which should give me the endpoint domain/api/bookings according to the nextjs docs > Routing: Route Handlers | Next.js
This works locally but not on the server.
I am making use of paw to test the endpoints locally and on vercel. Locally they return as expected but on vercel they are redirected and then eventually time out. I’ve updated the timeout to be 20s.