NuxtのdevモードでFATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory
が発生する場合の解決方法です。
以下のように、standalone: true,
をnuxt.config.js
のbuild
オプションに追加して下さい。エラーが解決します。
nuxt.config.js
// 略
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
standalone: true, //これを追加!
extend(config, ctx) {}
}
// 略
参考: https://github.com/nuxt/nuxt.js/pull/5452
終わりに
私は現在、Web3のサービスの開発をしています。詳しくはこちらの記事をご覧下さい。
無料でイーサリアムが当たる、Web3時代の寄付サイトを作った話