mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2024-11-16 22:29:24 +08:00
Fixed base url
This commit is contained in:
parent
105b0ec101
commit
8359142936
1 changed files with 82 additions and 79 deletions
|
@ -17,7 +17,8 @@ import Register from "./Routes/Register/Register";
|
|||
|
||||
const queryClient = new QueryClient();
|
||||
|
||||
const router = createBrowserRouter([
|
||||
const router = createBrowserRouter(
|
||||
[
|
||||
{
|
||||
path: "/",
|
||||
element: (
|
||||
|
@ -95,7 +96,9 @@ const router = createBrowserRouter([
|
|||
</Container>
|
||||
),
|
||||
},
|
||||
]);
|
||||
],
|
||||
{ basename: "Ivy" }
|
||||
);
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
|
|
Loading…
Reference in a new issue