diff --git a/next.config.js b/next.config.js index a843cbe..09bc55f 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,19 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, + async headers () { + return [ + { + source: '/(.*)', + headers: [ + { + key: 'Cache-Control', + value: 'public, max-age=2592000' + } + ] + } + ] + } } module.exports = nextConfig