1 2 3 4 5 6 7 8 9 10 11 12 13
import express from 'express' function disableRobots (req: express.Request, res: express.Response, next: express.NextFunction) { res.setHeader('X-Robots-Tag', 'noindex') return next() } // --------------------------------------------------------------------------- export { disableRobots }