chore: reduce build memory requirement to 4096MB

This commit is contained in:
Andrew Bastin
2023-10-17 12:20:16 +05:30
parent 2a4f6280bc
commit 636133168a

View File

@@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "node --max_old_space_size=16384 ./node_modules/vite/bin/vite.js build",
"build": "node --max_old_space_size=4096 ./node_modules/vite/bin/vite.js build",
"preview": "vite preview",
"tauri": "tauri"
},