chore: remove unused /api dir (#26415)

pull/26428/head
Nicolás Quiroz 2 years ago committed by GitHub
parent b798bc8f16
commit 6a45803ca8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      src/pages/api/hello.ts

@ -1,10 +0,0 @@
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
import type { NextApiRequest, NextApiResponse } from 'next';
type Data = {
name: string;
};
export default function handler(req: NextApiRequest, res: NextApiResponse<Data>) {
res.status(200).json({ name: 'John Doe' });
}
Loading…
Cancel
Save