aboutsummaryrefslogtreecommitdiff
path: root/index.ts
blob: 72679cedb28fa4719e4ae77a7ab58fec3fe1939b (plain)
1
2
3
4
5
6
import 'htmx.org';

document.querySelectorAll("a").forEach(e => {
    if (e.href.startsWith(window.location.origin)) return;
    e.target = "_blank";
});