1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/pages/api/headers.ts

5 lines
175 B
TypeScript
Raw Normal View History

2019-07-11 10:42:50 +09:00
import { NextApiRequest, NextApiResponse } from "next";
export const handler = (req: NextApiRequest, res: NextApiResponse) =>
res.json(req.headers);
2019-07-09 16:27:57 +09:00
export default handler;