Ios config.xml allow-navigation element removed on ionic cap copy/sync

Everytime I run ionic cap copy my <allow-navigation href="*" /> element gets removed.

Why does this happen and what can I do to resolve it?

config.xml:

<?xml version='1.0' encoding='utf-8'?>
<widget version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
  <access origin="*" />
  
  <feature name="NetworkStatus">
    <param name="ios-package" value="CDVConnection"/>
  </feature>

  <platform name="ios">
    <allow-navigation href="*" />
  </platform>
</widget>