diff --git a/index.html b/index.html index f1ce767..51bb16e 100644 --- a/index.html +++ b/index.html @@ -11,4 +11,13 @@
+ diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..348115a --- /dev/null +++ b/public/404.html @@ -0,0 +1,28 @@ + + + + + Page Not Found + + + + Redirecting... + + \ No newline at end of file diff --git a/src/main.tsx b/src/main.tsx index 2e37d40..8d6332d 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -8,8 +8,11 @@ import { DefaultNotFoundRoute } from "./components/default-not-found-route"; import { RouterProvider, createRouter } from "@tanstack/react-router"; import { routeTree } from "./routeTree.gen"; +// const hashHistory = createHashHistory(); + const router = createRouter({ routeTree, + // history: hashHistory, defaultNotFoundComponent: DefaultNotFoundRoute, });