-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[팀 서비스 클론 코딩] 윤생(이윤성) 미션 제출합니다. (#15)
* chore: project setting * chore: 필요한 의존성 추가 * chore: external URL 사용을 위한 도메인 설정 * chore: 에셋 추가 * feat: 쿠폰 컴포넌트 구현 * feat: CafeInfo 컴포넌트 구현 * feat: header 컴포넌트 구현 * feat: 로딩 스피너 컴포넌트 구현 * feat: 필요한 타입 선언 * feat: progress bar 컴포넌트 구현 * feat: 재사용하는 템플릿 구현 * chore: mock data 추가 * chore: 환경변수 설정 * feat: mock코드 작성 * feat: 필요한 훅 clone * feat: mock 서버 추가 * feat: 페이지 구현 * refactor: api 수정 * fix: 잘못된 Mock 수정 * fix: url 수정 * feat: 404 페이지 생성
- Loading branch information
Showing
36 changed files
with
5,231 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
NEXT_PUBLIC_API_MOCKING=enabled | ||
BASE_URL = "http://localhost:3000" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
NEXT_PUBLIC_API_MOCKING=enabled | ||
BASE_URL="https://frontend-rendering-vercel-git-step1-2yunseongs-projects.vercel.app" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
images: { | ||
domains: ['dnv0gl9rzyzod.cloudfront.net'], | ||
}, | ||
reactStrictMode: true, | ||
}; | ||
|
||
module.exports = nextConfig; |
Oops, something went wrong.