middlewares.js 172 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 import routes from "./routes"; export const localsMiddleware = (req, res, next) => { res.locals.siteName = 'my Youtube'; res.locals.routes = routes; next(); };