shivas-dosa/next.config.js
Alaguraj0361 272035e69a
Some checks failed
Build and Deploy Build Output / build (push) Has been cancelled
first commit
2025-07-19 12:23:35 +05:30

23 lines
477 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
reactStrictMode: false,
trailingSlash: true, // if needed for static export
async headers() {
return [
{
source: '/(.*)', // apply this to all routes
headers: [
{
key: 'Cache-Control',
value: 'no-store, no-cache, must-revalidate, proxy-revalidate',
},
],
},
];
},
};
module.exports = nextConfig;