Update Router component in App.svelte to disable hash-based routing for improved navigation experience

This commit is contained in:
becarta
2025-05-16 01:44:56 +02:00
parent ac7c22ffec
commit fe932180cb

View File

@@ -33,7 +33,7 @@
</script>
<main class="min-h-screen bg-white">
<Router {routes} />
<Router {routes} useHash={false} />
<Footer />
</main>