Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

강원대 FE_최서린 6주차 과제 Step1,2 #72

Open
wants to merge 19 commits into
base: seorinnn
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
7ff20b1
init : 5주차 과제 코드 옮겨오기
seorinnn Jul 31, 2024
6cd9b5c
feat : ServerProvider.js 추가
seorinnn Aug 1, 2024
8e6d944
feat : ServerProvider 적용
seorinnn Aug 1, 2024
89e850a
feat : 선택한 서버 주소로 카테고리 목록 조회하도록 변경
seorinnn Aug 1, 2024
2706b6f
feat : 상단 네비게이션 바에 API 선택하는 select 추가
seorinnn Aug 1, 2024
d7b4d80
feat : 첫 번째 API 선택 시 카테고리 목록 조회되도록 임시 모킹 핸들러 설정
seorinnn Aug 1, 2024
0167b7b
delete : 주석 삭제
seorinnn Aug 1, 2024
430c021
feat : 선택한 서버 주소로 상품 목록 조회하도록 변경
seorinnn Aug 1, 2024
7b7b30d
feat : 첫 번째 API 선택 시 상품 목록 조회되도록 임시 모킹 핸들러 설정
seorinnn Aug 1, 2024
ec0a6b0
feat : 선택한 서버 주소로 상품 상세 정보 조회하도록 변경
seorinnn Aug 1, 2024
436a227
feat : 첫 번째 API 선택 시 상품 상세 정보 및 옵션 조회되도록 임시 모킹 핸들러 설정
seorinnn Aug 1, 2024
d6122f0
feat : 선택한 서버 주소로 상품 옵션 조회하도록 변경
seorinnn Aug 1, 2024
b60dadc
feat : 로그인 페이지에 카카오로그인 버튼 추가
seorinnn Aug 2, 2024
b753794
feat : 카카오로그인 임시 구현
seorinnn Aug 2, 2024
b4f83cc
chore : gh-pages 패키지 설치
seorinnn Aug 2, 2024
d6a5eb0
chore : package.json homepage 속성 추가 및 deploy 설정 추가
seorinnn Aug 2, 2024
6641190
docs : 4단계 질문 README.md에 답변 작성
seorinnn Aug 6, 2024
ee75565
feat : 사용자별 포인트 조회 기능 구현
seorinnn Aug 6, 2024
043cfd5
docs : 포인트 기능 API 명세 README.md에 추가
seorinnn Aug 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
*storybook.log
9 changes: 9 additions & 0 deletions craco.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const path = require('path');

module.exports = {
webpack: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
};
Loading