How to remove hreflang tag for unused language

My Neos 2.0 website is using German as language only. Nevertheless, there is a link to an alternate page in Dutch in the source:

<link rel="alternate" hreflang="nl" href="https://domain.ch/nl/site.html"/>

We don’t maintain any Dutch content, so how to avoid/remove this extra tag?

No Dutch in Settings.yaml:

TYPO3:
  TYPO3CR:
    contentDimensions:
      'language':
        default: 'de'
        defaultPreset: 'de'
        label: 'Language'
        icon: 'icon-language'
        presets:
          'de':
            label: 'German'
            values: ['de']
            uriSegment: 'de'
          'en_US':
            label: 'English (US)'
            values: ['en_US']
            uriSegment: 'en'

However it is still possible to select different languages in the backend as per default Neos config. Maybe it would make sense to restrict that as well?

Also, in table typo3_typo3cr_domain_model_nodedimension, the only dimension is de

Hmm, tag seems to have vanished after I deactivated some other Sites.

Probably some of those other sites contained further dimension configuration. Keep in mind that configuration (settings, caches, object, policy) is global and not per site package.