Disable Sentry module in low-memory builds
All checks were successful
Build Docker Image / build (push) Successful in 5m7s

This commit is contained in:
Ruslan Bakiev
2026-02-06 10:01:35 +07:00
parent b76c7fce94
commit d262928a09
2 changed files with 4 additions and 2 deletions

View File

@@ -2,9 +2,10 @@ FROM node:22-slim AS build
ENV PNPM_HOME=/pnpm
ENV PATH=$PNPM_HOME:$PATH
ENV NODE_OPTIONS=--max-old-space-size=1536
ENV NODE_OPTIONS=--max-old-space-size=2048
ENV NUXT_SOURCEMAP=false
ENV NUXT_MINIFY=false
ENV SENTRY_ENABLED=false
ENV NUXT_TELEMETRY_DISABLED=1
WORKDIR /app