UNPKG

generator-roosevelt

Version:

🏭🧸 Command line application for creating Roosevelt apps.

11 lines (8 loc) 271 B
const path = require('path') module.exports = (router, app) => { const file = path.join(app.get('viewsPath'), 'robots.txt') router.route('/robots.txt').get((req, res) => { res.setHeader('Content-Type', 'text/plain; charset=utf-8') res.sendFile(file) }) }