> For the complete documentation index, see [llms.txt](https://docs-v3.activeloop.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-v3.activeloop.ai/v3.0.15/storage-and-credentials/managed-credentials/enabling-cors.md).

# Enabling CORS

In order to visualize you data, please enable [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing) in the buckets containing the Deep Lake dataset and any source data in linked tensors, by inserting the snippet below in the CORS section of the Permissions tab for the bucket:

```
[
    {
        "AllowedHeaders": [
            "*"
        ],
        "AllowedMethods": [
            "GET",
            "HEAD"
        ],
        "AllowedOrigins": [
            "*.activeloop.ai",
            "*.activeloop.dev"        
        ],
        "ExposeHeaders": []
    }
] 
```
