chore: update .gitignore

This commit is contained in:
jinhojang6 2024-03-01 20:44:49 +09:00
parent fac557029a
commit cb6cc845e5
No known key found for this signature in database
GPG Key ID: 1762F21FE8B543F8
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
node_modules
node_modules
build

View File

@ -157,9 +157,9 @@ export default function App() {
</Helmet>
<GlobalStyle background={bodyStyle.background} color={bodyStyle.color} fontFamily={bodyStyle.fontFamily} />
<Routes>
<Route exact path='/' element={<Home setBodyStyle={setBodyStyle} />} />
<Route exact path='/sign-in' element={<SignIn />} />
<Route exact path='/sign-up' element={<SignUp />} />
<Route exact path='/' element={<Home setBodyStyle={setBodyStyle} />} />
<Route exact path='/auth/:id' element={<SignInAuth />} />
<Route exact path='/shop/product/:id' element={<ProductItem />} />
<Route exact path='/shop/:category' element={<ShopCategory />} />