17 lines
498 B
TypeScript
17 lines
498 B
TypeScript
import { NextFunction, Request, Response } from "express";
|
|
import createHttpError from "http-errors";
|
|
import HttpCode from "@server/types/HttpCode";
|
|
|
|
export function notFoundMiddleware(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction,
|
|
) {
|
|
if (req.path.startsWith("/api")) {
|
|
const message = `The requests url is not found - ${req.originalUrl}`;
|
|
return next(createHttpError(HttpCode.NOT_FOUND, message));
|
|
}
|
|
return next();
|
|
}
|
|
|
|
export default notFoundMiddleware;
|