ng build --prod have javaScript heap out of memory error

前端 未结 4 803
孤街浪徒
孤街浪徒 2020-12-21 01:08

I am facing the below issue while using ng build --prod.

FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out o

4条回答
  •  一个人的身影
    2020-12-21 01:55

    I was facing same issue with ionic 3 unit testing.

    npm test

    was getting memory issue in above command then got it fixed with below commands--

    npm install

    node --max_old_space_size=8048 ./node_modules/@angular/cli/bin/ng test

    It worked for me.

提交回复
热议问题