Skip to content

Commit 2b7327b

Browse files
authored
chore: maximize button, html plugin (#11)
1 parent d2b5ad6 commit 2b7327b

File tree

6 files changed

+901
-467
lines changed

6 files changed

+901
-467
lines changed

web/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!doctype html>
22
<html lang="en" class="dark">
33
<head>
4+
<%- injectScriptHead %>
45
<meta charset="UTF-8" />
56
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
67
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
@@ -25,7 +26,7 @@
2526
</style>
2627
</head>
2728
<body>
29+
<%- injectScriptBody %>
2830
<div id="root"></div>
29-
<script type="module" src="/src/main.tsx"></script>
3031
</body>
3132
</html>

web/package.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@
2121
"clsx": "^2.1.1",
2222
"jotai": "^2.11.0",
2323
"jotai-location": "^0.5.5",
24-
"lucide-react": "^0.469.0",
24+
"lucide-react": "^0.453.0",
2525
"monaco-editor": "0.48.0",
2626
"posthog-js": "^1.205.0",
27-
"react": "^18.2.0",
28-
"react-dom": "^18.2.0",
27+
"react": "^18.3.1",
28+
"react-dom": "^18.3.1",
29+
"react-resizable-panels": "^2.1.7",
2930
"tailwind-merge": "^2.6.0",
3031
"tailwindcss-animate": "^1.0.7",
31-
"vite-plugin-svgr": "^4.3.0",
32-
"vite-plugin-vercel": "^9.0.4"
32+
"usehooks-ts": "^3.1.0"
3333
},
3434
"devDependencies": {
3535
"@types/node": "^22.10.5",
36-
"@types/react": "^18.2.66",
36+
"@types/react": "^18.3.1",
3737
"@types/react-dom": "^18.2.22",
3838
"@typescript-eslint/eslint-plugin": "^7.2.0",
3939
"@typescript-eslint/parser": "^7.2.0",
@@ -52,6 +52,9 @@
5252
"prettier": "^3.2.5",
5353
"tailwindcss": "^3.4.17",
5454
"typescript": "^5.2.2",
55-
"vite": "^5.2.0"
55+
"vite": "^5.2.0",
56+
"vite-plugin-html": "^3.2.2",
57+
"vite-plugin-svgr": "^4.3.0",
58+
"vite-plugin-vercel": "^9.0.4"
5659
}
5760
}

0 commit comments

Comments
 (0)