robots.ts 300 B

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