DEV Community

Discussion on: How to handle outbound links in desktop PWA?

Collapse
 
ganapativs profile image
Ganapati V S 😎 • Edited

Technically you could do it the other way only in case of PWA.

Set target blank as default for anchor tag.

<head>
<base target="_blank">
</head>

Add target=self to all internal/dev.to links.