diff --git a/lib/web/statusRouter.js b/lib/web/statusRouter.js index 256fead..7ecf383 100644 --- a/lib/web/statusRouter.js +++ b/lib/web/statusRouter.js @@ -17,7 +17,8 @@ statusRouter.get('/status', function (req, res, next) { realtime.getStatus(function (data) { res.set({ 'Cache-Control': 'private', // only cache by client - 'X-Robots-Tag': 'noindex, nofollow' // prevent crawling + 'X-Robots-Tag': 'noindex, nofollow', // prevent crawling + 'Content-Type': 'application/json' }) res.send(data) }) @@ -101,7 +102,8 @@ statusRouter.get('/config', function (req, res) { } res.set({ 'Cache-Control': 'private', // only cache by client - 'X-Robots-Tag': 'noindex, nofollow' // prevent crawling + 'X-Robots-Tag': 'noindex, nofollow', // prevent crawling + 'Content-Type': 'application/javascript' }) res.render(config.constantsPath, data) })