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

5 lines
173 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.query);
2019-07-09 17:11:41 +09:00
export default handler;