mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2024-11-17 06:39:25 +08:00
Fixed base url
This commit is contained in:
parent
105b0ec101
commit
8359142936
1 changed files with 82 additions and 79 deletions
161
src/App.tsx
161
src/App.tsx
|
@ -17,85 +17,88 @@ import Register from "./Routes/Register/Register";
|
||||||
|
|
||||||
const queryClient = new QueryClient();
|
const queryClient = new QueryClient();
|
||||||
|
|
||||||
const router = createBrowserRouter([
|
const router = createBrowserRouter(
|
||||||
{
|
[
|
||||||
path: "/",
|
{
|
||||||
element: (
|
path: "/",
|
||||||
<Container>
|
element: (
|
||||||
<Dashboard />
|
<Container>
|
||||||
</Container>
|
<Dashboard />
|
||||||
),
|
</Container>
|
||||||
errorElement: (
|
),
|
||||||
<Container>
|
errorElement: (
|
||||||
<Error />
|
<Container>
|
||||||
</Container>
|
<Error />
|
||||||
),
|
</Container>
|
||||||
},
|
),
|
||||||
{
|
},
|
||||||
path: "/Products",
|
{
|
||||||
element: (
|
path: "/Products",
|
||||||
<Container>
|
element: (
|
||||||
<Products />
|
<Container>
|
||||||
</Container>
|
<Products />
|
||||||
),
|
</Container>
|
||||||
},
|
),
|
||||||
{
|
},
|
||||||
path: "/Inventory",
|
{
|
||||||
element: (
|
path: "/Inventory",
|
||||||
<Container>
|
element: (
|
||||||
<Inventory />
|
<Container>
|
||||||
</Container>
|
<Inventory />
|
||||||
),
|
</Container>
|
||||||
},
|
),
|
||||||
{
|
},
|
||||||
path: "/Logs",
|
{
|
||||||
element: (
|
path: "/Logs",
|
||||||
<Container>
|
element: (
|
||||||
<Logs />
|
<Container>
|
||||||
</Container>
|
<Logs />
|
||||||
),
|
</Container>
|
||||||
},
|
),
|
||||||
{
|
},
|
||||||
path: "/Login",
|
{
|
||||||
element: (
|
path: "/Login",
|
||||||
<Container>
|
element: (
|
||||||
<Login />
|
<Container>
|
||||||
</Container>
|
<Login />
|
||||||
),
|
</Container>
|
||||||
},
|
),
|
||||||
{
|
},
|
||||||
path: "/Product/:id",
|
{
|
||||||
element: (
|
path: "/Product/:id",
|
||||||
<Container>
|
element: (
|
||||||
<Product />
|
<Container>
|
||||||
</Container>
|
<Product />
|
||||||
),
|
</Container>
|
||||||
},
|
),
|
||||||
{
|
},
|
||||||
path: "/Activation/:uid/:token",
|
{
|
||||||
element: (
|
path: "/Activation/:uid/:token",
|
||||||
<Container>
|
element: (
|
||||||
<Activation />
|
<Container>
|
||||||
</Container>
|
<Activation />
|
||||||
),
|
</Container>
|
||||||
},
|
),
|
||||||
{
|
},
|
||||||
path: "/NewProduct",
|
{
|
||||||
element: (
|
path: "/NewProduct",
|
||||||
<Container>
|
element: (
|
||||||
<NewProduct />
|
<Container>
|
||||||
</Container>
|
<NewProduct />
|
||||||
),
|
</Container>
|
||||||
},
|
),
|
||||||
{
|
},
|
||||||
path: "/Register",
|
{
|
||||||
element: (
|
path: "/Register",
|
||||||
<Container>
|
element: (
|
||||||
<Register />
|
<Container>
|
||||||
</Container>
|
<Register />
|
||||||
),
|
</Container>
|
||||||
},
|
),
|
||||||
]);
|
},
|
||||||
|
],
|
||||||
|
{ basename: "Ivy" }
|
||||||
|
);
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue