Files
yourwillyourwish/next.config.mjs
2026-02-06 21:44:04 -06:00

15 lines
333 B
JavaScript

/** @type {import('./estate_platform/node_modules/next').NextConfig} */
const nextConfig = {
output: 'standalone',
logging: {
fetches: {
unmatchedRoutes: process.env.NODE_ENV === 'development',
},
},
onDemandEntries: {
maxInactiveAge: 60 * 1000,
pagesBufferLength: 5,
},
};
export default nextConfig;