Hello, I'm using and I get this error on my page :
video.js:81VIDEOJS: ERROR: SyntaxError: Unexpected token ' in JSON at position 1
at JSON.parse (<anonymous>)
at Object.SafeParseTuple [as default] (video.js:5)
at Function.getTagSettings (video.js:81)
at new Player (video.js:81)
at videojs (video.js:81)
at autoSetup (video.js:81)
The player is working well, but I don't know why I have this error in my console ? Thanks for help :)
It sounds like your data-setup property isn't valid JSON.
@TheKassaK see #2022. You can't use ' (single quote) in JSON, only " (double quotes).
Most helpful comment
@TheKassaK see #2022. You can't use
'(single quote) in JSON, only"(double quotes).