aboutsummaryrefslogtreecommitdiff
path: root/index.ts
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-10-03 18:40:45 +0200
committerWilliam Hergès <william@herges.fr>2025-10-03 18:40:45 +0200
commit0de89e6bc6a467b2cc4261ae65464f40119cc0ff (patch)
tree47ca3e894444950152b3ba0cf587f713d5aa7eaa /index.ts
parent270f592fc65cd5553ccf7c0dc81431c3efdf67ab (diff)
feat(frontend): use htmx to dynamically navigate between pages
Diffstat (limited to 'index.ts')
-rw-r--r--index.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/index.ts b/index.ts
deleted file mode 100644
index 72679ce..0000000
--- a/index.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-import 'htmx.org';
-
-document.querySelectorAll("a").forEach(e => {
- if (e.href.startsWith(window.location.origin)) return;
- e.target = "_blank";
-});