Problem with plugin config whitelist

we are expieriencing a problem.
Until now we used following plugin and its configuration inside our application:

 <plugin name="cordova-plugin-whitelist" />
 <allow-navigation href="*" />
 <access origin="*" />
 <allow-intent href="*" />

Today we got an error " the plugin is now included delete it from the configuration file"

But we need to make the configuration lines

 <allow-navigation href="*" />
 <access origin="*" />
 <allow-intent href="*" />

Otherwise our app will brake
How can you do that?
Putting only the lines inside the config also breakes our app.

It is connecting to mqtt and href problem that we where solving from this plug.

The whitelist plugin is now built into Cordova, so it should not be in your config.xml file.

You say your app breaks when you leave it out. How does it break?

it breaks on mqtt connection with the broker

mqttws31.js:893 Error: AMQJS0011E Invalid state not connected.
(anonymous) @ mqttws31.js:893
(anonymous) @ mqttws31.js:1892
MQTTconnect @ ct_eco.js:908

Are there any other messages on the Remote Console?

It looks like VoltBuilder is building properly, but there is a problem with your app.