> ## Documentation Index
> Fetch the complete documentation index at: https://docs.guidewhale.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Content Security Policy (CSP)

> If GuideWhale is configured correctly, but still fails to initialize inside your application, it is likely due to a Content Security Policy (CSP) blockage.

GuideWhale uses different external subdomains for providing users with interactive in-app content. If your application has a Content Security Policy (CSP) that blocks requests to external domains, GuideWhale will not be able to properly initialize and display content.

Your IT team or department can add our domains to your Content Security Policy (CSP) whitelist to resolve this issue:

```mdx theme={null} theme={null}
style-src    'self' https://*.guidewhale.com https://fonts.gstatic.com https://fonts.googleapis.com 'unsafe-inline';
font-src     'self' https://*.guidewhale.com https://fonts.gstatic.com https://fonts.googleapis.com;
script-src   'self' https://*.guidewhale.com 'unsafe-inline';
img-src      'self' https://*.guidewhale.com;
media-src    'self' https://*.guidewhale.com;
connect-src  https://*.guidewhale.com wss://*.guidewhale.com;
```
