Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ cursor_*
# Build configs for other projects
tsup.config.ts
.env

# macOS artefacts
.DS_Store
49 changes: 26 additions & 23 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,25 +1,28 @@
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/pwa-192x192.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#3b82f6" />
<meta name="description" content="도룸도룸 Progressive Web App" />

<!-- PWA Meta Tags -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="도룸도룸" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />

<!-- Manifest -->
<link rel="manifest" href="/manifest.json" />

<title>도룸도룸</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/pwa-192x192.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#3b82f6" />
<meta name="description" content="도룸도룸 Progressive Web App" />

<!-- PWA Meta Tags -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="도룸도룸" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />

<!-- Manifest -->
<link rel="manifest" href="/manifest.json" />

<title>도룸도룸</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>

</html>
75 changes: 74 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@stomp/stompjs": "^7.3.0",
"@types/sockjs-client": "^1.5.4",
"axios": "^1.6.2",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
Expand All @@ -25,6 +27,7 @@
"react-hot-toast": "^2.5.2",
"react-query": "^3.39.3",
"react-router-dom": "^6.20.1",
"sockjs-client": "^1.6.1",
"tailwind-merge": "^2.0.0",
"zod": "^3.22.4",
"zustand": "^4.4.7"
Expand Down
Loading