From 65a05064877b07b55d235f76c27abe34a04e5535 Mon Sep 17 00:00:00 2001 From: Trance-0 <60459821+Trance-0@users.noreply.github.com> Date: Tue, 25 Nov 2025 17:32:23 -0600 Subject: [PATCH] Update next.config.mjs --- distribute/next.config.mjs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/distribute/next.config.mjs b/distribute/next.config.mjs index 1743217..2008b72 100644 --- a/distribute/next.config.mjs +++ b/distribute/next.config.mjs @@ -20,13 +20,7 @@ const bundleAnalyzer = withBundleAnalyzer({ }) export default bundleAnalyzer(withNextra({ - - // static export start - output: 'export', - images: { - unoptimized: true // mandatory, otherwise won't export - }, - // static export end + output: 'standalone', // eslint: { // ignoreDuringBuilds: true, @@ -40,4 +34,7 @@ export default bundleAnalyzer(withNextra({ // staticGenerationMaxConcurrency: 2, // try 1–3, default is 8 // staticGenerationMinPagesPerWorker: 1 // keep small, default is 25 // } -})) \ No newline at end of file +})) + +// If you have other Next.js configurations, you can pass them as the parameter: +// export default withNextra({ /* other next.js config */ }) \ No newline at end of file