blob: 9790b87553d1a937f1070fe74dd8fc3d32687665 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import https from 'node:https';
export const onRequest = (context, next) => {
context.locals.title = 'Middleware';
context.locals.nodePrefixedImportExists = !!https;
return next();
};
|