Issue loading youtube videos in 'windows' platform, browser can't find '<x-ms-webview>' src property

hey guys ,am trying to link to youtube videos in ionic 2 using “x-ms-webview” for windows platform

<x-ms-webview *ngIf="myPlatform.is('windows')" [src]="m.media.url | sanitizeHtml:1"></x-ms-webview>

and it gives me this error :

am using “x-ms-webview” because “iframe” gives me this error on ‘windows’ platform :

Unable to navigate to: ‘https://www.youtube.com/watch?v=KmMt59V3XPA’. An iframe attempted to navigate to a URI that is not included in the ApplicationContentUriRules for this app. Use a x-ms-webview element to view the URI instead, or add the URI to the ApplicationContentUriRules section of the package manifest so that the iframe can navigate to it. (In Visual Studio, add this URI to the Content URIs tab of the Manifest Designer.)

any solutions ?