使用webpack build 现象描述:
构建过程中频繁报内存溢出:FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed -process out of memory。
原因是node 环境可使用内存为512M,build时候node_module 文件超出最大内存。
解决方案:通过 package.json 中的 “build” 加大内存
"build": "node --max_old_space_size=8000"
构建过程中频繁报内存溢出:FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed -process out of memory。
原因是node 环境可使用内存为512M,build时候node_module 文件超出最大内存。
解决方案:通过 package.json 中的 “build” 加大内存
"build": "node --max_old_space_size=8000"