Java教程

Angular Build 或Serve 内存溢出 CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory

本文主要是介绍Angular Build 或Serve 内存溢出 CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

方法一:设置环境变量

# windows
set NODE_OPTIONS=--max_old_space_size=4096
# mac/linux
export NODE_OPTIONS=--max_old_space_size=4096



方法二:在运行命令中增加 --max_old_space_size=4096

    例如可以修改 package.json 的 scripts 脚本,示例如下:

{
  "scripts": {
    "serve": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng serve",
    "prod": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng build --prod",
  }
}
这篇关于Angular Build 或Serve 内存溢出 CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!