ionic config unset
Delete config values
ionic config unset [options]
This command deletes configuration values from the project's ./ionic.config.json file. It can also operate on the global CLI configuration (~/.ionic/config.json) using the --global
option.
For nested properties, separate nest levels with dots. For example, the property name integrations.cordova
will look in the integrations object for the cordova property.
For multi-app projects, this command is scoped to the current project by default. To operate at the root of the project configuration file instead, use the --root
option.
Examples
$ ionic config unset
$ ionic config unset type
$ ionic config unset --global git.setup
$ ionic config unset -g interactive
Inputs
property | |
---|---|
Description | The property name you wish to delete |
Options
--global | |
---|---|
Description | Use global CLI config |
Aliases | -g |
Advanced Options
--root | |
---|---|
Description | Operate on root of ./ionic.config.json |