I'm trying to redirect to an external URL, i'm developing on localhost so i am getting localhost:4200/www.example.com, how can i solve this? thanks in advance
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-main',
templateUrl: './main.component.html'
})
export class MainComponent implements OnInit {
public title: string;
constructor(){}
ngOnInit(){
window.location.href = 'www.example.com'
}
}