2026-04-07 18:55:06 +09:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="ko">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
2026-04-13 14:20:32 +09:00
|
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
2026-04-07 18:55:06 +09:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2026-04-13 14:20:32 +09:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
2026-04-22 00:29:39 +09:00
|
|
|
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin />
|
2026-04-13 14:20:32 +09:00
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;900&display=swap" rel="stylesheet" />
|
2026-04-22 00:29:39 +09:00
|
|
|
<!-- MapleStory 폰트: font-display: optional 로 override. 첫 방문시 폰트가 100ms 내에
|
|
|
|
|
도착하지 않으면 fallback 유지, 이후 캐시되면 적용됨. 레이아웃 이동 제거 목적. -->
|
|
|
|
|
<style>
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Maplestory';
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-display: optional;
|
|
|
|
|
src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Maplestory/Maplestory-Light.woff2') format('woff2');
|
|
|
|
|
}
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Maplestory';
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-display: optional;
|
|
|
|
|
src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Maplestory/Maplestory-Bold.woff2') format('woff2');
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2026-04-13 19:21:40 +09:00
|
|
|
<script type="text/javascript" src="https://openapi.nexon.com/js/analytics.js?app_id=274844" async></script>
|
2026-04-17 22:11:27 +09:00
|
|
|
<script>
|
|
|
|
|
(function () {
|
|
|
|
|
try {
|
|
|
|
|
var raw = localStorage.getItem('maple-theme');
|
|
|
|
|
if (!raw) return;
|
|
|
|
|
var theme = JSON.parse(raw).state && JSON.parse(raw).state.theme;
|
|
|
|
|
if (theme === 'light') document.documentElement.setAttribute('data-theme', 'light');
|
|
|
|
|
} catch (e) {}
|
|
|
|
|
})();
|
|
|
|
|
</script>
|
2026-04-13 14:20:32 +09:00
|
|
|
<title>메이플스토리 유틸리티</title>
|
2026-04-07 18:55:06 +09:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="root"></div>
|
|
|
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|