File tree 2 files changed +6
-6
lines changed
src/components/navigation
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ export default function Navigator() {
9
9
return (
10
10
< >
11
11
< Routes >
12
- < Route path = { "/portfolio/ " } element = { < Home /> } > </ Route >
13
- < Route path = { "/portfolio/ about" } element = { < AboutMe /> } > </ Route >
14
- < Route path = { "/portfolio/ education" } element = { < Education /> } > </ Route >
15
- < Route path = { "/portfolio/ work" } element = { < Work /> } > </ Route >
16
- < Route path = { "/portfolio/ projects" } element = { < Projects > </ Projects > } > </ Route >
12
+ < Route path = { "/" } element = { < Home /> } > </ Route >
13
+ < Route path = { "/about" } element = { < AboutMe /> } > </ Route >
14
+ < Route path = { "/education" } element = { < Education /> } > </ Route >
15
+ < Route path = { "/work" } element = { < Work /> } > </ Route >
16
+ < Route path = { "/projects" } element = { < Projects > </ Projects > } > </ Route >
17
17
</ Routes >
18
18
</ >
19
19
) ;
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ import react from "@vitejs/plugin-react";
4
4
// https://vitejs.dev/config/
5
5
export default defineConfig ( {
6
6
plugins : [ react ( ) ] ,
7
- base :"/portfolio" ,
7
+ base :"/portfolio/ " ,
8
8
} ) ;
You can’t perform that action at this time.
0 commit comments