Barend Bootha
Barend Bootha
> Since I have reference comment in Index.js So you have the following in your Index.js? ``` javascript /// ``` Because if you do, indexpartial.js will always be loaded no...
had a quick look ran into the same issue, some of SSM vars was empty "" strings, it then opts to check the `.env` file for a value. Once I...
We made the following change and that fixed the issue Issue reported on `esbuild` gh as well https://github.com/evanw/esbuild/issues/3817 ``` nodejs_bundling_options = NodejsBundlingOptions(esbuild_version="0.21.5") some_lambda = NodejsFunction( scope=self, ... bundling=nodejs_bundling_options, ) ```