> ## Documentation Index
> Fetch the complete documentation index at: https://wiki.another-horizon.eu/llms.txt
> Use this file to discover all available pages before exploring further.

# Osano

> Manage cookie consent with Osano privacy platform.

Add the following to your `docs.json` file to add the [Osano](https://www.osano.com/) cookie consent manager.

<CodeGroup>
  ```json Integration options in docs.json theme={null}
  "integrations": {
      "osano": {
          "scriptSource": "SOURCE"
      }
  }
  ```

  ```json Example theme={null}
  "integrations": {
      "osano": {
          "scriptSource": "https://cmp.osano.com/2sUB2dqwqdkks/8dqwd-dwd86£-4a9b/osano.js"
      }
  }
  ```
</CodeGroup>

The `scriptSource` value can be found as the `src` value in the code snippet generated by Osano. It always starts with `https://cmp.osano.com/` and ends with `/osano.js`.

```html Code snippet from Osano theme={null}
<script src="https://cmp.osano.com/placeholder/placeholder/osano.js"/>
```

## Troubleshooting

<Accordion title="Pages not loading with Strict compliance mode">
  If your documentation pages aren't loading properly when using Osano's **Strict** compliance mode, you'll need to whitelist Mintlify's domain to allow images and other assets to load.

  <Steps>
    <Step title="Navigate to Managed Rules">
      In your Osano dashboard, go to **Scripts** → **Managed Rules**.
    </Step>

    <Step title="Add Mintlify domain">
      Add `.mintlify.app/` as a managed rule.

      <Frame>
        <img src="https://mintcdn.com/anotherhorizon/nGGkQ8HPtMLIJ_OO/images/integrations/osano-managed-rule.png?fit=max&auto=format&n=nGGkQ8HPtMLIJ_OO&q=85&s=01ad6a2e9b14f8494cff784b3c47ee34" alt="Osano managed rule" width="1980" height="738" data-path="images/integrations/osano-managed-rule.png" />
      </Frame>

      <Info>
        This ensures that all Mintlify-served assets (including images, stylesheets, and other documentation resources) are treated as essential and will load even when Osano blocks uncategorized third-party content.
      </Info>
    </Step>
  </Steps>
</Accordion>
