Skip to content

Commit

Permalink
Change to browser router
Browse files Browse the repository at this point in the history
  • Loading branch information
JayJay1024 committed Nov 5, 2024
1 parent 3df151c commit 54ee7be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/helixbox-home/src/router.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { createHashRouter } from "react-router-dom";
import { createBrowserRouter } from "react-router-dom";
import NotFound from "./routes/not-found";
import Error from "./routes/error";
import Home from "./routes/home";
import Solver from "./routes/solver";
import Layout from "./layout";

export const router = createHashRouter([
export const router = createBrowserRouter([
{
path: "/",
element: <Layout />,
Expand Down

0 comments on commit 54ee7be

Please sign in to comment.