- esbuild drop 옵션으로 빌드 시 console/debugger 자동 제거 - 개발용 폴더(publish, component/wrap) 빌드 시 제외 - 프록시 설정 추가 (signal-api, ship/image, tracks) - index.html root 이동 (public/ → root) - 의존성 업데이트 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
533 B
HTML
17 lines
533 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>GIS 함정용</title>
|
|
<!-- Vite가 빌드 시 '/'로 시작하는 경로에 base를 자동 적용 -->
|
|
<link rel="stylesheet" href="/css/base.css">
|
|
<link rel="stylesheet" href="/css/common.css">
|
|
<link rel="stylesheet" href="/css/font.css">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|