- Spring Boot 3.2.1 + React 19 프로젝트 구조 - S&P Global Maritime API Bypass 및 Risk & Compliance Screening 기능 - 팀 워크플로우 v1.6.1 적용 (settings.json, hooks, workflow-version) - 프론트엔드 빌드 (Vite + TypeScript + Tailwind CSS) - 메인 카드 레이아웃 CSS Grid 전환 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
720 B
HTML
18 lines
720 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/x-icon" href="/snp-global/favicon.ico" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/snp-global/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/snp-global/favicon-16x16.png" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/snp-global/apple-touch-icon.png" />
|
|
<link rel="manifest" href="/snp-global/site.webmanifest" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>S&P Global API</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|