zoukankan      html  css  js  c++  java
  • angular 内存泄露 FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed

    angular  内存泄露   FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory  

     解决办法(亲测可用)

      解决方法:手动改写内存上限

      修改目录:  my-project/node_modules/.bin  找到 ng.cmd :

    @IF EXIST "%~dp0
    ode.exe" (
      "%~dp0
    ode.exe" --max_old_space_size=10000000 "%~dp0..@angularcliin
    g" %*
    ) ELSE (
      @SETLOCAL
      @SET PATHEXT=%PATHEXT:;.JS;=;%
      node  --max_old_space_size=10000000   "%~dp0..@angularcliin
    g" %*
    )

    修改目录: my-project/node_modules/.bin  找到 ngc.cmd :

    @IF EXIST "%~dp0
    ode.exe" (
      "%~dp0
    ode.exe" --max_old_space_size=10000000   "%~dp0..@angularcompiler-clisrcmain.js" %*
    ) ELSE (
      @SETLOCAL
      @SET PATHEXT=%PATHEXT:;.JS;=;%
      node --max_old_space_size=10000000   "%~dp0..@angularcompiler-clisrcmain.js" %*
    )

    前端

  • 相关阅读:
    Daemon——守护进程
    RTMP
    CR LF CR/LF
    SO_REUSEADDR
    [aac @ ...] more samples than frame size (avcodec_encode_audio2)
    前端向后端传数据的方法
    控制层接受参数
    Swagger2
    net.sf.json------json解析
    springboot
  • 原文地址:https://www.cnblogs.com/xiaobing-R/p/14548717.html
Copyright © 2011-2022 走看看