4c93bd8154
Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> Co-authored-by: Yan Thomas <61414485+Yan-Thomas@users.noreply.github.com>
5 lines
104 B
TypeScript
5 lines
104 B
TypeScript
export const onRequest = (context, next) => {
|
|
context.locals.title = 'Middleware';
|
|
|
|
return next();
|
|
};
|