15 lines
333 B
JavaScript
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;
|