diff --git a/routes/index.js b/routes/index.js index 46af037..2bef1c3 100644 --- a/routes/index.js +++ b/routes/index.js @@ -17,12 +17,7 @@ const apiConfig = nconf.get('api'); const apiPath = `/${apiConfig.prefix}/${apiConfig.version}`; router.use((req, res, next) => { - res.header('Cache-Control', 'max-age=60'); - return next(); -}); - -router.use((req, res, next) => { - res.header('Cache-Control', 'max-age=300'); + res.header('Cache-Control', 'max-age=0'); return next(); });