index.js 257 Bytes
const express = require('express');
const router = express.Router();

/*** SEO ***/
// Robots.txt
const robotsTXT = [
	'User-agent: *',
].join('\n');
router.get('/robots.txt', (req, res) => res.type('text/plain').send(robotsTXT));

module.exports = router;