Skip to content
Dashboard

Node.js Vercel Functions now support fetch web handlers

export default {
fetch(request: Request) {
return new Response('Hello from Vercel!');
}
};

Ready to deploy?