fix: disable edge/html caching for now so deployments are visible immediately

This commit is contained in:
2026-06-28 22:36:43 +00:00
parent 991e73fcff
commit ebfa8dcdb0
+10
View File
@@ -2,6 +2,16 @@
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
async headers() {
return [
{
source: '/:path*',
headers: [
{ key: 'Cache-Control', value: 'no-cache, no-store, must-revalidate' },
],
},
];
},
};
module.exports = nextConfig;