Skip to content

Commit

Permalink
Enable hash integration
Browse files Browse the repository at this point in the history
  • Loading branch information
webblocksapp committed Mar 25, 2024
1 parent 4144066 commit c5e7d3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/src/index.tsx
@@ -1,5 +1,5 @@
import { render, Suspense } from 'solid-js/web';
import { Router } from '@solidjs/router';
import { Router, hashIntegration } from '@solidjs/router';
import { App } from './App';
import './index.css';
import 'bootstrap/dist/js/bootstrap.js';
Expand All @@ -11,7 +11,7 @@ loadSnippets();

render(
() => (
<Router base={BASE_URL}>
<Router source={hashIntegration()} base={BASE_URL}>
<SidebarProvider>
<Suspense>
<App />
Expand Down

0 comments on commit c5e7d3c

Please sign in to comment.