Full build: Vite/React acid-terminal frontend (BEARER design system, Panchang/Sentient/Fragment Mono, neon layer, palette audit script), HoodquidityVaults Foundry contracts (single+dual deposits via Chainlink-style feeds, hybrid exit, 10% platform fee, boost, Genesis LP), Reown AppKit wallet connect with Robinhood Chain testnet (46630), live data from Dexscreener and onchain reads, partner portal, design-sync setup for claude.ai/design. Deploy: static via Forgejo Actions platform, BUILD_DIR=apps/web/dist (.env). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
10 lines
338 B
Bash
Executable file
10 lines
338 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# This script sets the node `--max-old-space-size` to 8192 if it is not set already.
|
|
# All existing `NODE_OPTIONS` are retained as is.
|
|
|
|
export NODE_OPTIONS="${NODE_OPTIONS:-}"
|
|
|
|
if [ "${NODE_OPTIONS##*--max-old-space-size*}" = "$NODE_OPTIONS" ]; then
|
|
export NODE_OPTIONS="${NODE_OPTIONS} --max-old-space-size=8192"
|
|
fi
|