Skip to content

Commit

Permalink
Merge pull request #270 from leehj322/Next-이형준-sprint9
Browse files Browse the repository at this point in the history
[이형준]sprint9
  • Loading branch information
jyh0521 authored Aug 12, 2024
2 parents 8d163dd + 488441e commit 3e3478a
Show file tree
Hide file tree
Showing 50 changed files with 3,143 additions and 1,274 deletions.
48 changes: 36 additions & 12 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,51 @@
## 사이트 배포 링크

- https://leehj322-codeit.netlify.app/

## 요구사항

### 기본
### 피그마 링크

- https://www.figma.com/design/IVkRlYWHY74QlgmxqA99Ym/%EC%8A%A4%ED%94%84%EB%A6%B0%ED%8A%B8-%EB%AF%B8%EC%85%98?node-id=14331-3275&t=xVS6s2QutJAZP4N2-0

### 기본 요구사항

- [x] Github에 PR(Pull Request)을 만들어서 미션을 제출합니다.
- [x] 피그마 디자인에 맞게 페이지를 만들어 주세요.
- [x] 기존의 React, Typescript로 구현한 프로젝트와 별도로 진행합니다.
- [x] Next.js를 사용합니다

### 체크리스트 (기본)

- [ ] 자유 게시판 페이지 주소는 "/boards" 입니다.
- [ ] 전체 게시글에서 드롭 다운으로 "최신 순" 또는 "좋아요 순"을 선택해서 정렬을 할 수 있습니다.
- [ ] 게시글 목록 조회 api를 사용하여 베스트 게시글, 게시글을 구현합니다.
- [ ] 게시글 title에 검색어가 일부 포함되면 검색이 됩니다.

### 체크리스트 (심화)

- [x]
- []
- []
- [ ] 반응형으로 보여지는 베스트 게시판 개수를 다르게 설정할때 서버에 보내는 pageSize값을 적절하게 설정합니다.
- [ ] next의 prefetch 기능을 사용해봅니다.

### 심화
### 피드백 반영

- [x]
- []
- [ ]
- [ ]

### 추가 예정 사항

- [ ]
- [ ]

## 주요 변경사항

-
-

## 스크린샷

![image](이미지url)

## 멘토에게

-
-
- 셀프 코드 리뷰를 통해 질문 이어가겠습니다.
-
-
-
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage
Expand Down Expand Up @@ -33,3 +34,6 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

# vscode
.vscode
40 changes: 0 additions & 40 deletions README.md

This file was deleted.

6 changes: 0 additions & 6 deletions next.config.js

This file was deleted.

16 changes: 16 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "sprint-fe-project.s3.ap-northeast-2.amazonaws.com",
port: "",
pathname: "/Sprint_Mission/user/**",
},
],
},
};

export default nextConfig;
Loading

0 comments on commit 3e3478a

Please sign in to comment.