Initial commit

This commit is contained in:
Developer
2026-02-06 21:44:04 -06:00
commit f85e93c7a6
151 changed files with 22916 additions and 0 deletions

14
next.config.mjs Normal file
View File

@@ -0,0 +1,14 @@
/** @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;