Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions vite-project/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ dist-ssr
*.njsproj
*.sln
*.sw?

# .gitignore
.env
32 changes: 20 additions & 12 deletions vite-project/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
<html lang="ko">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="판다마켓 - 일상의 모든 물건을 거래해보세요!" />
<meta name="keywords" content="중고거래, 판다마켓, 중고마켓, 중고상품, 중고물품" />
<meta property="og:title" content="판다마켓" />
<meta property="og:description" content="판다마켓 - 일상의 모든 물건을 거래해보세요!" />
<meta property="og:image" content="/og/metadata.png" />
<link rel="icon" href="/favicon/favicon.ico" type="image/x-icon" />
<title>판다마켓</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>

</html>
Loading
Loading