Reputation: 320
I'm trying to setup my mobile app with amplify, after the first time i run amplify configuration
it prompt me that I have missing plugins.
The following official plugins are missing or inactive:
awscloudformation: provider | [email protected]
analytics: category | [email protected]
api: category | [email protected]
auth: category | [email protected]
function: category | [email protected]
hosting: category | amplify-category-hosting@undefined
hosting: category | amplify-console-hosting@undefined
interactions: category | [email protected]
notifications: category | [email protected]
predictions: category | [email protected]
storage: category | [email protected]
xr: category | [email protected]
codegen: util | [email protected]
flutter: frontend | [email protected]
android: frontend | [email protected]
ios: frontend | [email protected]
javascript: frontend | [email protected]
mock: util | [email protected]
Then it asked me to select my backend provider, but there is nothing for me to choose.
I think it is cause by the missing plugin, how do I install those plugin?
Upvotes: 2
Views: 1644
Reputation: 7028
Try to re-install amplify with this command npm install -g @aws-amplify/cli --unsafe-perm=true
.
Upvotes: 4