- GearParentFlowViewer: React Flow 기반 인터랙티브 흐름도 - gear-parent-flow.html: standalone entry point - vite.config.ts: multi-entry 빌드 (main + gearParentFlow) - App.tsx: FLOW 링크 추가 - @xyflow/react 의존성 추가 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
387 B
HTML
14 lines
387 B
HTML
<!doctype html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/kcg.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>gear-parent-flow-viewer</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/gearParentFlowMain.tsx"></script>
|
|
</body>
|
|
</html>
|