Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
spiritanand committed Nov 4, 2023
2 parents 82d995d + 4e6088c commit 6110fe6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6110fe6

Please sign in to comment.