diff --git a/server/modules/ServerBootstrapper.js b/server/modules/ServerBootstrapper.js index c34d6f6..749ac06 100644 --- a/server/modules/ServerBootstrapper.js +++ b/server/modules/ServerBootstrapper.js @@ -140,7 +140,7 @@ const ServerBootstrapper = { app.use('/images', express.static(path.join(__dirname, '../../client/src/images'))); app.use('/styles', express.static(path.join(__dirname, '../../client/src/styles'))); app.use('/webfonts', express.static(path.join(__dirname, '../../client/src/webfonts'))); - app.use('/robots.txt', (req, res) => { + app.use('/robots.txt', standardRateLimit, (req, res) => { res.sendFile(path.join(__dirname, '../../client/robots.txt')); });