Skip to content

Commit

Permalink
feat: use hash router instead of browser (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
kunish authored Aug 27, 2023
1 parent cd96f66 commit b9ab6a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
import 'solid-devtools'
import { render } from 'solid-js/web'

import { Router } from '@solidjs/router'
import { Router, hashIntegration } from '@solidjs/router'
import { App } from './App'
import './index.css'

const root = document.getElementById('root')

render(
() => (
<Router>
<Router source={hashIntegration()}>
<App />
</Router>
),
Expand Down

0 comments on commit b9ab6a9

Please sign in to comment.