Make build Node options configurable
Some checks failed
Build Docker Image / build (push) Failing after 3m21s
Some checks failed
Build Docker Image / build (push) Failing after 3m21s
This commit is contained in:
@@ -2,7 +2,7 @@ FROM node:22-slim AS build
|
||||
|
||||
ENV PNPM_HOME=/pnpm
|
||||
ENV PATH=$PNPM_HOME:$PATH
|
||||
ENV NODE_OPTIONS=--max-old-space-size=2048
|
||||
ENV NODE_OPTIONS=--max-old-space-size=1536
|
||||
ENV NUXT_SOURCEMAP=false
|
||||
ENV NUXT_MINIFY=false
|
||||
ENV NUXT_TELEMETRY_DISABLED=1
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "NODE_OPTIONS='--max-old-space-size=4096' nuxt build",
|
||||
"build": "NODE_OPTIONS=${NODE_OPTIONS:---max-old-space-size=4096} nuxt build",
|
||||
"dev": "nuxt dev",
|
||||
"start": "nuxt preview",
|
||||
"generate": "nuxt generate",
|
||||
|
||||
Reference in New Issue
Block a user