我在部署无服务器时遇到此错误
/node_modules/hapi-plugin-websocket/node_modules/@hapi/hoek/lib/contain.js:82
compare = compare ?? internals.compare(options);
^
SyntaxError: Unexpected token '?'
at compileFunction (<anonymous>)
at wrapSafe (internal/modules/cjs/loader.js:1063:16)
at Module._compile (internal/modules/cjs/loader.js:1111:27)***
1条答案
按热度按时间rslzwgfq1#
看起来您使用的是旧版本的Node,它不支持零合并运算符
??
,您可以将Node的版本升级到14+,或者您可以将??
替换为三元运算符,如下所示: