Api Routes
Last updated
Last updated
Simple API routes inside Next.js app like for form input
Just create a function inside the pages/api
directory that has the following format:
/pages/api/hello.js
http://localhost:3000/api/hello
They can be deployed as Serverless Functions (also known as Lambdas).
req
is an instance of , plus some pre-built middlewares you can see .
res
is an instance of , plus some helper functions you can see .
Do Not Fetch an API Route from getStaticProps
or getStaticPaths
, instead just run the code in them since it runs serverside anyway