Skip to content

Commit

Permalink
fix(ci): fix failing builds due to oom issues (#17103)
Browse files Browse the repository at this point in the history
The macos build in particular is failing due to the node heap running out of available memory. Upping the memory fixes this.
  • Loading branch information
mjhuff authored Dec 13, 2024
1 parent a0bd4ee commit a7a84df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ clean:
dist: export NODE_ENV := production
dist:
echo "Building app JS bundle (browser layer)"
vite build
NODE_OPTIONS="--max-old-space-size=8192" vite build

# development
#####################################################################
Expand Down

0 comments on commit a7a84df

Please sign in to comment.