1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/next/pages/api/query/[path].ts
2020-07-21 00:35:20 +09:00

4 lines
173 B
TypeScript

import { NextApiRequest, NextApiResponse } from "next";
export const handler = (req: NextApiRequest, res: NextApiResponse) =>
res.json(req.query);
export default handler;