23 lines
477 B
JavaScript
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;
|