I am trying to redirect to external url using anchor tag but angular is trying to route it inside the application. Is there anyway to redirect to external url without using directive and without adding http:// or https:// to it.
Example:
<a href="{{ link }}"
rel="noopener noreferrer"
target="_blank">
{{ link }}
</a>
link can be resolved to url with out protocol. For example "www.example.com".