Set Content Security Policy (CSP)
Configure your Content Security Policy (CSP) to allow access to resources like scripts, styles, images, and connections from the dtone.com domain and its subdomains.
A basic CSP configuration might look like this:
Content-Security-Policy:
script-src 'self' https://*.dtone.com;
style-src 'self' https://*.dtone.com;
connect-src 'self' https://*.dtone.com;
img-src 'self' https://*.dtone.com;Updated 9 months ago