Fixed base url

This commit is contained in:
keannu125 2023-03-10 00:52:06 +08:00
parent 105b0ec101
commit 8359142936

View file

@ -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 (