diff --git a/Dockerfile b/Dockerfile index 0ba3681..fcd0375 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ COPY . . RUN pnpm prisma generate ENV NEXT_TELEMETRY_DISABLED=1 -ENV NODE_OPTIONS="--max-old-space-size=2048" +ENV NODE_OPTIONS="--max-old-space-size=512" RUN pnpm build # ── runner ────────────────────────────────────────────────────────────────── diff --git a/next.config.ts b/next.config.ts index 5100a23..428fd9f 100644 --- a/next.config.ts +++ b/next.config.ts @@ -26,6 +26,9 @@ const withPWA = withPWAInit({ const nextConfig: NextConfig = { output: "standalone", turbopack: {}, + experimental: { + webpackBuildWorker: false, + }, }; export default withPWA(nextConfig);