diff --git a/apps/infoalloggi/next.config.ts b/apps/infoalloggi/next.config.ts index 9a46301..919de2d 100644 --- a/apps/infoalloggi/next.config.ts +++ b/apps/infoalloggi/next.config.ts @@ -20,7 +20,7 @@ async function createNextConfig(): Promise { const buildId = `${Date.now().toString(36)}`; const apiVersion = `v.${buildId}`; - return withBundleAnalyzer({ + const configs: NextConfig = { compiler: { removeConsole: false, }, @@ -94,7 +94,9 @@ async function createNextConfig(): Promise { typescript: { ignoreBuildErrors: true, }, - }); + }; + + return withBundleAnalyzer(configs); } export default (async () => await createNextConfig())();