build: avoid PWA OOM on small VPS (heap + skip PDF precache)

- Set NODE_OPTIONS max-old-space-size=3072 for tsc and vite build
- Workbox globIgnores PDFs; drop resume.pdf from PWA includeAssets

Made-with: Cursor
This commit is contained in:
ilia
2026-03-24 23:05:42 -04:00
parent 677f56f8fb
commit 7a5eee8d21
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build": "NODE_OPTIONS=--max-old-space-size=3072 tsc && NODE_OPTIONS=--max-old-space-size=3072 vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --check \"./**/*.{js,jsx,ts,tsx,css,md,json}\"",