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

[개인 미션 - 성능 오답노트] 가브리엘(윤주현) 미션 제출합니다. #70

Merged
merged 23 commits into from
Sep 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e42b7b7
chore: 미션 시작 전 초기 세팅
gabrielyoon7 Aug 31, 2023
f1e7c38
chore: BundleAnalyzerPlugin 설치
gabrielyoon7 Sep 3, 2023
57705fd
refactor: MiniCssExtractPlugin, CssMinimizerPlugin 적용
gabrielyoon7 Sep 4, 2023
8a1327d
chore: serve:prod 스크립트 추가
gabrielyoon7 Sep 4, 2023
f37af40
chore: splitChunks 설정 및 chunkhash 추가
gabrielyoon7 Sep 4, 2023
be14ed4
refactor: Code Splitting
gabrielyoon7 Sep 4, 2023
111cb0f
refactor: Code Splitting을 위한 Suspense 추가
gabrielyoon7 Sep 4, 2023
9d2dbdc
chore: Tree Shaking 적용
gabrielyoon7 Sep 4, 2023
2ca8cd0
chore: 이미지 최적화
gabrielyoon7 Sep 4, 2023
52a9bef
refactor: gif를 webm으로 수정
gabrielyoon7 Sep 5, 2023
8e01d68
fix: webpack.config.js에 webm 설정 추가
gabrielyoon7 Sep 5, 2023
ec3c2c5
refactor: 이미지에 alt 속성 추가
gabrielyoon7 Sep 5, 2023
79d7ff4
refactor: heading 태그 개선
gabrielyoon7 Sep 5, 2023
634cf66
refactor: 메타 태그 설명 추가
gabrielyoon7 Sep 5, 2023
65be00e
fix: webm이 사용된 태그를 비디오 태그로 수정
gabrielyoon7 Sep 5, 2023
00ec763
fix: video가 무한 반복하도록 개선
gabrielyoon7 Sep 5, 2023
639f25f
refactor: hero 사이즈 개선
gabrielyoon7 Sep 5, 2023
6c1b8d6
refactor: react-icons tree shaking 적용
gabrielyoon7 Sep 5, 2023
f85e644
refactor: 컴포넌트 메모이제이션 추가
gabrielyoon7 Sep 5, 2023
f79c679
refactor: image alt 속성 추가
gabrielyoon7 Sep 5, 2023
8bcfd8c
refactor: GIPHY의 trending API를 Search 페이지에 들어올 때마다 새로 요청하지 않도록 개선
gabrielyoon7 Sep 6, 2023
f30b11e
refactor: layout shift 최소화
gabrielyoon7 Sep 6, 2023
b0ad40b
refactor: CustomCursor layout shift 최소화
gabrielyoon7 Sep 6, 2023
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
27 changes: 14 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./public/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="memegle for wooteco"/>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

description meta 태그 좋네요~

<link rel="icon" href="./public/favicon.ico"/>
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<title>memegle - gif search engine for you</title>
</head>
</head>

<body>
<div id="app"></div>
</body>
<body>
<div id="app"></div>
</body>
</html>
Loading