If I want to include aws-sdk in my bundle to be su...
# sst
r
If I want to include aws-sdk in my bundle to be sure of the version, is it a case of specifying
externalModules
in the bundle and omitting aws-sdk?
f
if you want to include it, specify it in
nodeModules
.
The lambda package will then have a
nodeModules
folder in there with
aws-sdk
r
Makes sense, thanks