New: Add noreferrer to external links

This commit is contained in:
Qstick 2023-02-26 00:05:31 -06:00
parent 13230dc36f
commit ff16043a06

View file

@ -43,6 +43,7 @@ class Link extends Component {
el = 'a';
linkProps.href = to;
linkProps.target = target || '_blank';
linkProps.rel = 'noreferrer';
} else if (noRouter) {
el = 'a';
linkProps.href = to;