componentDidMount()

in frontend/src/components/player/player.js [14:22]


  componentDidMount() {
    videojs.Hls.xhr.beforeRequest = function (options) {
      options.uri = `${options.uri}`;
      return options;
    };
    this.player = videojs(this.videoNode, this.props,function onPlayerReady() {
      console.log('onPlayerReady', this)
    });
  }