Skip to content

Commit 54fe3c9

Browse files
authored
Merge pull request #11
PR: 페이지 리뉴얼
2 parents d9bac89 + 0baba94 commit 54fe3c9

36 files changed

+3083
-1541
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,28 @@ labels: 'bug'
66
---
77

88
## ✅ 체크리스트 (Checklist)
9+
910
> 이슈 등록 전, 아래 항목을 확인해주세요.
1011
1112
- [ ] 이미 존재하는 이슈가 있지 않나요?
1213

1314
---
1415

1516
## 🚨 어떤 버그인가요?
17+
1618
- 내용
1719

1820
## 재현 방법 (상세)
21+
1922
1.
2023
2.
2124
3.
2225

2326
## 📸 스크린샷 (Screenshots)
27+
2428
[ ]
2529

2630
## 💻 환경 정보
2731

2832
- OS: [Mac, Windows]
29-
- Browser: [Chrome, Safari]
33+
- Browser: [Chrome, Safari]

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ labels: 'feature'
66
---
77

88
## ✅ 체크리스트 (Checklist)
9+
910
> 이슈 등록 전, 아래 항목을 확인해주세요.
1011
1112
- [ ] 이미 존재하는 이슈가 있지 않나요?
1213

1314
---
1415

1516
## 🎯 어떤 기능이 추가되나요?
17+
1618
- 내용
1719

1820
## 📋 예상 작업 로직

.github/pull_request_template.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ labels: ''
66
---
77

88
## ✅ 체크리스트 (Checklist)
9+
910
> PR을 올리기 전, 아래 항목들을 확인해주세요.
1011
1112
- [ ] 커밋 기록은 컨벤션에 맞게 작성했나요? (feat, fix, refactor, chore 등)
@@ -16,6 +17,7 @@ labels: ''
1617
---
1718

1819
## 📑 개요
20+
1921
간단한 작업 목표 내용을 입력 해 주세요.
2022
가능한 이슈를 먼저 생성하고, 생성 된 이슈를 연결 해 주세요.
2123

@@ -24,6 +26,7 @@ labels: ''
2426
- [ ] 작업 내용 1
2527

2628
## 🚩 이슈
29+
2730
- ...
2831

29-
---
32+
---

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ jobs:
4242
4343
- name: Invalidate CloudFront cache 🎉
4444
run: |
45-
aws cloudfront create-invalidation --distribution-id ${{ secrets.AWS_CLOUDFRONT_DISTRIBUTION }} --paths "/*"
45+
aws cloudfront create-invalidation --distribution-id ${{ secrets.AWS_CLOUDFRONT_DISTRIBUTION }} --paths "/*"

next.config.ts

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,11 @@ import type { NextConfig } from 'next';
22

33
const nextConfig: NextConfig = {
44
output: 'export',
5+
compiler: {
6+
styledComponents: true,
7+
},
58
images: {
69
unoptimized: true,
7-
remotePatterns: [
8-
{
9-
protocol: 'https',
10-
hostname: new URL(process.env.NEXT_PUBLIC_CLOUDFRONT_URL!).hostname,
11-
port: '',
12-
pathname: '/**',
13-
},
14-
],
1510
},
1611
};
1712

0 commit comments

Comments
 (0)