Wistia config options don't work on v3

Author: pslohCreated Sep 11, 2025Updated Feb 27, 2026
LabelsPRs welcomeenhancement

Hi there,

I'm searching for documentation on how to provide config options to Wistia on v3. This worked in v2:

<ReactPlayer
  url={videoUrl}
  width="100%"
  controls={true}
  config={{
    options: {
      time: startSec,
      videoFoam: true,
      autoPlay,
      playSuspendedOffScreen,
      playlistLoop,
      resumable: false,
      controlsVisibleOnLoad: false,
    },
  }}
/>

What is the correct usage for v3?