Skip to content

Commit

Permalink
fix : production router error 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondanythings committed Mar 30, 2023
1 parent 5a62088 commit f47c921
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ const Router = () => {
<BrowserRouter>
<GlobalStyle />
<Routes>
<Route element={<Default />}>
<Route path='' element={<Home />} />
<Route path='' element={<Default />}>
<Route index element={<Home />} />
<Route path='convenient' element={<Convenient />} />
<Route path='detail' element={<Detail />} />
<Route path='result' element={<Search />} />
Expand Down

0 comments on commit f47c921

Please sign in to comment.