Question: Going through the Guide, at the "<Config...
# help
i
Question: Going through the Guide, at the "Configure AWS Amplify" on the frontend step, and the install command is
npm install aws-amplify
, noticeably not
npm install aws-amplify --save
. Is there a reason why this step doesn't
--save
? Thanks!
r
--save is the default anyway, --save-dev is used for dev dependencies
i
Got it. Thanks!
r
I.e. --save can be omitted