aboutsummaryrefslogtreecommitdiffstats
path: root/pages/api/hello.ts
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-12 23:23:52 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-12 23:23:52 +0100
commit6c1cbe9f4d956ad6140c780b2f88f5de4e4eee67 (patch)
tree86ecc5b223a771d90dd977bc3917a8dacedb4128 /pages/api/hello.ts
parentf3d462c8183598362605dc53589583f2859f20b9 (diff)
build: move global styles and pages inside src directory
Diffstat (limited to 'pages/api/hello.ts')
-rw-r--r--pages/api/hello.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/pages/api/hello.ts b/pages/api/hello.ts
deleted file mode 100644
index f8bcc7e..0000000
--- a/pages/api/hello.ts
+++ /dev/null
@@ -1,13 +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' })
-}