Files
crm-server/src/middlewares/global/notFound.js
2025-11-18 13:53:28 +01:00

6 lines
145 B
JavaScript

export function notFound(req, res, next) {
res.status(404);
const error = new Error(`🔍 Not Found - ${req.originalUrl}`);
next(error);
}