The HTTP Content-Security-Policybase-uri directive restricts the URLs which can be used in a document's <base> element. If this value is absent, then any URI is allowed. If this directive is absent, the user agent will use the value in the <base> element.
Since your domain isn't example.com, a <base> element with its href set to https://example.com will result in a CSP violation.
<metahttp-equiv="Content-Security-Policy"content="base-uri 'self'"/><basehref="https://example.com/"/><!--
// Error: Refused to set the document's base URI to 'https://example.com/'
// because it violates the following Content Security Policy
// directive: "base-uri 'self'"
-->