12 lines
433 B
TypeScript
12 lines
433 B
TypeScript
|
import { Request, Response } from 'express';
|
||
|
import staticFile from 'connect-static-file'
|
||
|
import path from 'path';
|
||
|
|
||
|
export default function handle404(serveDir : string) {
|
||
|
const handle404Middleware = staticFile(path.join(serveDir, '.404.html'));
|
||
|
return function (request : Request, response : Response, next : Function) {
|
||
|
response.statusCode = 404;
|
||
|
return handle404Middleware(request, response, next);
|
||
|
}
|
||
|
}
|