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

메타 태그 동적 적용 및 seo관련 작업, 일부 스타일 변경 #82

Merged
merged 9 commits into from
Feb 22, 2024
38 changes: 20 additions & 18 deletions index.html
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>
Loading
Loading