๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ hello.ts ยท 6 lines
1
2
3
4
5
6import type { NextApiRequest, NextApiResponse } from "next";

export default function handler(req: NextApiRequest, res: NextApiResponse) {
  res.status(200).json({ message: "Hello from API!" });
}