Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sst start "TypeError: getAwsCredentials is not a function"

I deleted /node_modules and /package-lock.json and did npm install.

After this when I am doing npx sst start I am getting this error: TypeError: getAwsCredentials is not a function. How to solve this?

like image 607
Prerna Avatar asked Jun 05 '26 21:06

Prerna


1 Answers

Package.json

Old:

"@serverless-stack/cli": "0.69.2",

"@serverless-stack/resources": "0.69.2",

New:

"@serverless-stack/cli": "0.69.6",
"@serverless-stack/resources": "0.69.6",

like image 164
DaveIIi Avatar answered Jun 07 '26 11:06

DaveIIi