LoginSignup
0
0

More than 1 year has passed since last update.

React: JavaScript heap out of memory

Posted at

次の環境でテストしました。

$ node --version
v14.19.0
$ npm --version
6.14.16

起動時にエラーが出ました。

npm start
<--- JS stacktrace --->

FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memo
ry
 1: 0xa3aaf0 node::Abort() [node]
 2: 0x970199 node::FatalError(char const*, char const*) [node]
 3: 0xbba45e v8::Utils::ReportOOMFailure(v8::internal::Isolate*, char const*, bo
ol) [node]

解決策

export NODE_OPTIONS="--max-old-space-size=2048"
npm start
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0