-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (29 loc) · 1.66 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html lang="en">
<head>
<link rel="icon" type="image/png" href="/op_image.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rest Spot Finder</title>
<meta name="description" content="경로 상 휴게소 찾기." charset="UTF-8" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://restspotfinder.site/" />
<meta property="og:title" content="Rest Spot Finder" />
<meta property="og:description" content="경로 상 휴게소 찾기." />
<meta property="og:site_name" content="Rest Spot Finder" />
<meta property="og:image" content="./op_image.png" />
<script
type="text/javascript"
src="https://oapi.map.naver.com/openapi/v3/maps.js?ncpClientId=a8lt0yd9uy"
></script>
<script>
(function(){var w=window;if(w.ChannelIO){return w.console.error("ChannelIO script included twice.");}var ch=function(){ch.c(arguments);};ch.q=[];ch.c=function(args){ch.q.push(args);};w.ChannelIO=ch;function l(){if(w.ChannelIOInitialized){return;}w.ChannelIOInitialized=true;var s=document.createElement("script");s.type="text/javascript";s.async=true;s.src="https://cdn.channel.io/plugin/ch-plugin-web.js";var x=document.getElementsByTagName("script")[0];if(x.parentNode){x.parentNode.insertBefore(s,x);}}if(document.readyState==="complete"){l();}else{w.addEventListener("DOMContentLoaded",l);w.addEventListener("load",l);}})();
ChannelIO('boot', {
"pluginKey": "82a84b60-4a8a-41bc-b800-a4b91671903c"
});
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>