We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23df720 commit 39e5d5eCopy full SHA for 39e5d5e
1 file changed
client/src/App.tsx
@@ -1,5 +1,5 @@
1
import { useState } from "react";
2
-import { BrowserRouter, Routes, Route, useLocation } from "react-router";
+import { HashRouter, Routes, Route, useLocation } from "react-router";
3
import { AnimatePresence } from "motion/react";
4
5
import { Home } from "@/pages/home";
@@ -58,8 +58,8 @@ function AppContent() {
58
59
export default function App() {
60
return (
61
- <BrowserRouter>
+ <HashRouter>
62
<AppContent />
63
- </BrowserRouter>
+ </HashRouter>
64
);
65
}
0 commit comments