Hey guys,
Using a Next.js project with netlify. Now when I try to integrate functions, the functions are not availabe under /.netlify/functions/{func_name}
because next is using port 3000 and netlify using port 8888.
There is some confusion I don’t quite get here, that netlify serves my project on port 8888, opens the browser with localhost:8888
, but then right after the nextjs dev server is serving the project with port 3000 and kill the initial dev server instance.
Any ideas?