> ## Documentation Index
> Fetch the complete documentation index at: https://velt-mintlify-40d8baa1.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Velt Video Player

<img src="https://mintcdn.com/velt-mintlify-40d8baa1/8TNhG6EKumP9W1bY/images/customization/comments/velt-video-player/video-player.png?fit=max&auto=format&n=8TNhG6EKumP9W1bY&q=85&s=79e778a2c40c074a12fc28531d5554fd" alt="" width="1280" height="720" data-path="images/customization/comments/velt-video-player/video-player.png" />

## Disable ShadowDOM

* By default, ShadowDOM is used to ensure that your app's CSS does not interfere with the styling of the SDK components.
* Disable the shadow dom to apply your custom CSS to the component.

Default: `true`

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltVideoPlayer shadowDom={false} />
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```jsx theme={null}
    <velt-video-player shadow-dom="false"></velt-video-player>
    ```
  </Tab>
</Tabs>
