semantic-search-api / render.yaml
TarunikaHF's picture
fix: set max-old-space-size to prevent OOM on render
384ebfe
Raw
History Blame Contribute Delete
924 Bytes
services:
# ──────────────────────────────────────────────────────────────────
# Frontend: React + Vite Static Site
# ──────────────────────────────────────────────────────────────────
- type: web
name: semantic-search-frontend
env: static
buildCommand: cd frontend && npm install && npm run build
staticPublishPath: ./frontend/dist
envVars:
- key: VITE_API_URL
# Point the frontend to our new Hugging Face Spaces backend!
value: "https://tarunikahf-semantic-search-api.hf.space"
- key: NODE_OPTIONS
# Prevent OOM during npm run build on 512MB Free Tier
value: "--max-old-space-size=400"