aniwatch / src /config /notFoundHandler.ts
ChinnaRengamani
1
11acfd9
import type { RequestHandler } from "express";
import createHttpError from "http-errors";
const notFoundHandler: RequestHandler = (req, res, next) => {
return next(createHttpError.NotFound());
};
export default notFoundHandler;