"Content-type": "application/json"을 안쓰면 생기는 문제!

Next에서는 직접 method의 타입을 체크해야 한다.

여러 method를 허락하려한다면 ?

withHandler({
		methods: ["GET", "POST"],
		handler,
})
type method = "GET" | "POST" | "DELETE";

interface ConfigType {
  methods: method[];
  handler: (req: NextApiRequest, res: NextApiResponse) => void;
  isPrivate?: boolean;
}

export default function withHandler({
  methods,
  isPrivate = true,
  handler,
}: ConfigType) {
  return async function (
    req: NextApiRequest,
    res: NextApiResponse
  ): Promise<any> {
    if (req.method && !methods.includes(req.method as any)) {
      return res.status(405).end();
    }
		//...
  };
}