When i try to use the angular webpage into native script angular webview i'm getting the error.
This is the code i'm using the bellow code from the native script docs
<WebView [src]="webViewSrc" (loadStarted)="onLoadStarted($event)" (loadFinished)="onLoadFinished($event)"> </WebView>
`webViewSrc = "https://***************.firebaseapp.com/#/authentication/login";
onLoadStarted(args: LoadEventData) {
const webView = args.object as WebView;
if (!args.error) {
console.log("Load Start");
console.log(`EventName: ${args.eventName}`);
console.log(`NavigationType: ${args.navigationType}`);
console.log(`Url: ${args.url}`);
} else {
console.log(`EventName: ${args.eventName}`);
console.log(`Error: ${args.error}`);
}
}
onLoadFinished(args: LoadEventData) {
const webView = args.object as WebView;
if (!args.error) {
console.log("Load Finished");
console.log(`EventName: ${args.eventName}`);
console.log(`NavigationType: ${args.navigationType}`);
console.log(`Url: ${args.url}`);
} else {
console.log(`EventName: ${args.eventName}`);
console.log(`Error: ${args.error}`);
}
}`
when i run the code getting bellow error

Can any one help how can i fix this issue.
When i try to use the angular webpage into native script angular webview i'm getting the error.
This is the code i'm using the bellow code from the native script docs
<WebView [src]="webViewSrc" (loadStarted)="onLoadStarted($event)" (loadFinished)="onLoadFinished($event)"> </WebView>`webViewSrc = "https://***************.firebaseapp.com/#/authentication/login";
when i run the code getting bellow error
Can any one help how can i fix this issue.