Under /api I have a list.go function with a Handler function. Per the documentation, this should be queryable at /api/list - and it is.
Under /src/app/api - I have ./auth/[...nextauth]/route.ts which is my next-auth handler code. I expect this to be queryable at /api/auth/*.
When I deploy this on Vercel - or when I run it locally with vercel dev - I get a 404 on all paths under /api/auth. When I remove the root /api folder, it works fine.
Is there a way to get both serverless functions and API routes to work at the same time?