[SOLVED] Passing Variables with framework7 cordova cli

Hello i just want to add some variables to cordova. for example "framework7 cordova plugin add cordova-plugin-facebook4 --save " but i get an error like: error: unknown option `–save’

do you know any solution for that problem?

thank you!

https://forum.framework7.io/search?q=Passing%20Variables%20with%20framework7%20cordova%20cli%20

Or use -- (double dash) to bypass variables to script (this how NPM works):

framework7 cordova plugin add cordova-plugin-facebook4 -- --save
1 Like

thank you very much!!!