我正在尝试部署GCP云功能,并确保它使用--max-http-header-size=
节点选项,但是当试图为部署返回设置NODE_OPTIONS
时:
Problems:
environment_variables:
environment variable name NODE_OPTIONS is reserved by the system: it cannot be set by users
]
我想知道是否有人知道如何允许这样的值被设置为云功能的部署。
是否可以在package.json的开始命令中设置它?
"scripts": {
"start": "node --max-http-header-size=81000 server.js"
},