mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
9 lines
301 B
TypeScript
9 lines
301 B
TypeScript
import { NextApiHandler, NextApiRequest, NextApiResponse } from 'next'
|
|
|
|
const NotFound: NextApiHandler = (_req: NextApiRequest, res: NextApiResponse) => {
|
|
res.statusCode = 404
|
|
res.json({ code: 404, message: '요청하신 URL에 페이지가 존재하지 않습니다.' })
|
|
}
|
|
|
|
export default NotFound
|