Revert "feat: hash routing"

This reverts commit ea23db4b5f.
This commit is contained in:
Shusui MOYATANI
2023-09-15 21:50:50 +09:00
parent 2dcc4da53f
commit a569013626
2 changed files with 5 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
/* @refresh reload */
import { Router, hashIntegration } from '@solidjs/router';
import { Router } from '@solidjs/router';
import { render } from 'solid-js/web';
import '@/index.css';
@@ -7,7 +7,7 @@ import App from '@/App';
render(
() => (
<Router base={import.meta.env.BASE_URL} source={hashIntegration()}>
<Router base={import.meta.env.BASE_URL}>
<App />
</Router>
),