使用视窗
当我运行 yarn build 时,出现以下错误:
{
args: [
'NODE_OPTIONS=--max-old-space-size=8192',
'next',
'build',
'--debug'
],
env: { NODE_OPTIONS: '--max-old-space-size' },
cmd: [ 'next', 'build', '--debug' ]
}
Error: missing value for flag --max-old-space-size of type size_t
Try --help for options
C:\Program Files\nodejs\node.exe: bad option: --max-old-space-size
Note: This command was run via npm module 'win-node-env'
error Command failed with exit code 9.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command
即使该值应分配为环境变量,我的 package.json 中的一个片段:
"scripts": {
"build": "yarn pre-build && NODE_OPTIONS=--max-old-space-size=8192 next build --debug",
"build:analyze": "yarn pre-build && NODE_OPTIONS=--max-old-space-size=8192 BUNDLE_ANALYZE=true next build",
它似乎将其视为命令而不是环境变量。有没有办法改变这个?