Skip to content

Commit 52bdb2a

Browse files
committed
chore: 카카오 맵 API 설치
1 parent b249eb4 commit 52bdb2a

9 files changed

+2203
-1246
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ dist
1212
dist-ssr
1313
*.local
1414

15+
.env
16+
1517
# Editor directories and files
1618
.vscode/*
1719
!.vscode/extensions.json

index.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Vite + React</title>
8+
<script
9+
type="text/javascript"
10+
src="//dapi.kakao.com/v2/maps/sdk.js?appkey=%KAKAO_MAP_KEY%&libraries=services,clusterer"
11+
></script>
812
</head>
913
<body>
1014
<div id="root"></div>

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"emotion-reset": "^3.0.1",
2121
"react": "^18.3.1",
2222
"react-dom": "^18.3.1",
23+
"react-kakao-maps-sdk": "^1.1.27",
2324
"react-router-dom": "^7.1.3"
2425
},
2526
"devDependencies": {

0 commit comments

Comments
 (0)