UNPKG

@zalando/zally-web-ui

Version:
14 lines (11 loc) 287 B
'use strict'; const path = require('path'); module.exports = options => { return function indexHandler(req, res) { const mountpath = path.join(req.app.mountpath, '/'); res.render('index', { mountpath: mountpath, headTitle: options.env.HEAD_TITLE, }); }; };