Refused to frame 'https://embed.twitch.tv/' because an ancestor violates the following Content Security Policy directive

Thats dead?! and/or behind on security


<html>
  <body>
    <div id="twitch-embed"></div>
    <script src="https://embed.twitch.tv/embed/v1.js"></script>
    <script type="text/javascript">
      new Twitch.Embed("twitch-embed", {
        width: '100%',
        height: '100%',
        channel: "sourceinvite",
      });
    </script>
  </body>
</html>

needs to become


<html>
  <body>
    <div id="twitch-embed"></div>
    <script src="https://embed.twitch.tv/embed/v1.js"></script>
    <script type="text/javascript">
      new Twitch.Embed("twitch-embed", {
        width: '100%',
        height: '100%',
        channel: "sourceinvite",
         parent: ["sourceinvite-wixsite-com.filesusr.com","sourceinvite.wixsite.com"]
      });
    </script>
  </body>
</html>