我正在尝试将“express.js”脚本与 esbuild 捆绑使用
esbuild index.js --bundle --platform=node --outfile=server.js
作为 netlify/aws lambda 函数运行,似乎总是得到这个警告:
> node_modules/express/lib/view.js: warning: This call to "require" will not be bundled because the argument is not a string literal
81 │ var fn = require(mod).__express
╵ ~~~~~~~
该功能似乎正在运行,但我想找出可能出了什么问题,我在任何地方都找不到任何在线提示?