编译项目出现如下错误:
FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
原因:
node的堆内存上限大概在1.7G,如果超过就会出现次错误;
解决方法:
全局安装increase-memory-limit
npm install -g increase-memory-limit
进入工程目录,执行:
increase-memory-limit
即可解决。
2023-08-20 20:27:58
编译项目出现如下错误:
FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
原因:
node的堆内存上限大概在1.7G,如果超过就会出现次错误;
解决方法:
全局安装increase-memory-limit
npm install -g increase-memory-limit
进入工程目录,执行:
increase-memory-limit
即可解决。
下一篇:利用phpmailer类邮件发送