diff --git a/src/client/app/router.ts b/src/client/app/router.ts index 8b4b678ecde0..02499af634c4 100644 --- a/src/client/app/router.ts +++ b/src/client/app/router.ts @@ -97,6 +97,10 @@ export function createRouter( const currentUrl = window.location // only intercept inbound links if ( + !e.ctrlKey && + !e.shiftKey && + !e.altKey && + !e.metaKey && target !== `_blank` && protocol === currentUrl.protocol && hostname === currentUrl.hostname