- BrowserRouter에 v7_startTransition, v7_relativeSplatPath 플래그 추가 - 콘솔 경고 메시지 제거 refactor: 앨범 유형 표시 분리 및 라이트박스 개선 - album_type (전체), album_type_short (짧은) 분리 - 앨범 목록에서 짧은 유형 표시 - 라이트박스 닫기 애니메이션 추가 (AnimatePresence) - 배경 클릭 시 모달 닫힘 방지 - favicon 링크 추가
19 lines
561 B
HTML
19 lines
561 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
<title>fromis_9 - 프로미스나인</title>
|
|
<link
|
|
rel="stylesheet"
|
|
as="style"
|
|
crossorigin
|
|
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|