Is it okay to add Angular routerLink to HTML <a> tags to avoid SEO issues?
If I add routerLink to an HTML tag, the routerLink works perfect, meaning it takes preference over the natural new http request. Example: <a href="/page" [routerLink]="['/page']">Go to page view</a> Why would I do that? To let crawlers correctly identify links,…