-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from side-project-pokehub/Hun
메타 태그 동적 적용 및 seo관련 작업, 일부 스타일 변경
- Loading branch information
Showing
15 changed files
with
6,066 additions
and
440 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 |
---|---|---|
@@ -1,18 +1,20 @@ | ||
<!doctype html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/favicon.png" /> | ||
<link rel="preconnect" href="https://pokeapi.co" /> | ||
<link rel="preconnect" href="https://cdn.jsdelivr.net" /> | ||
<link rel="preconnect" href="https://raw.githubusercontent.com" /> | ||
<link rel="dns-prefetch" href="https://pokeapi.co" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>포케허브</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<div id="modal"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
</html> | ||
<!doctype html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link href="/favicon.png" rel="icon" type="image/svg+xml" /> | ||
<link href="https://pokeapi.co" rel="preconnect" /> | ||
<link href="https://cdn.jsdelivr.net" rel="preconnect" /> | ||
<link href="https://raw.githubusercontent.com" rel="preconnect" /> | ||
<link href="https://pokeapi.co" rel="dns-prefetch" /> | ||
<meta | ||
content="width=device-width, initial-scale=1, user-scalable=no, maximum-scale=1, width=device-width" | ||
name="viewport" | ||
/> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<div id="modal"></div> | ||
<script src="/src/main.tsx" type="module"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.