1234567891011121314151617181920212223242526 |
- Synopsis
-
- cordova-cli config <command> [options]
-
- The config command can be used to set, get, delete, edit, and list global cordova options.
-
- Options
- --set <key> <value> ... Sets the config key to the value. If value is omitted, then it sets it to "true".
- --get <key> ........... Echo the config value to stdout.
- --delete <key> ........ Deletes the key from all configuration files.
- --edit ................ Opens the config file in an editor.
- --ls .................. Lists contents of config file.
-
-
- Syntax
- cordova-cli config set <key> <value> ....... cordova config set save-exact true
- cordova-cli config get <key> ............... cordova config get save-exact
- cordova-cli config delete <key> ............ cordova config delete save-exact
- cordova-cli config edit .................... cordova config edit
- cordova-cli config ls ...................... cordova config ls
-
- Options
- save-exact ...................... default setting = false
-
- Examples
- cordova config set save-exact true
|