Skip to content

Commit a6b0eb4

Browse files
committed
fun
1 parent bdcd99a commit a6b0eb4

30 files changed

+1127
-203
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>Chat</title>
88
</head>
99
<body>
10-
<div id="root"></div>
10+
<div id="app"></div>
1111
<script type="module" src="/src/main.tsx"></script>
1212
</body>
1313
</html>

package.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,32 @@
44
"version": "0.0.0",
55
"type": "module",
66
"scripts": {
7-
"generate-pwa-assets": "pwa-assets-generator",
8-
"dev": "vite --host",
7+
"dev": "vite",
98
"build": "tsc && vite build",
109
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
1110
"preview": "vite preview"
1211
},
1312
"dependencies": {
13+
"@tanstack/react-router": "^1.29.2",
14+
"clsx": "^2.1.0",
1415
"react": "^18.2.0",
1516
"react-dom": "^18.2.0"
1617
},
1718
"devDependencies": {
19+
"@tanstack/router-devtools": "^1.29.2",
20+
"@tanstack/router-vite-plugin": "^1.30.0",
1821
"@types/react": "^18.2.66",
1922
"@types/react-dom": "^18.2.22",
2023
"@typescript-eslint/eslint-plugin": "^7.2.0",
2124
"@typescript-eslint/parser": "^7.2.0",
2225
"@vite-pwa/assets-generator": "^0.2.4",
2326
"@vitejs/plugin-react-swc": "^3.5.0",
27+
"autoprefixer": "^10.4.19",
2428
"eslint": "^8.57.0",
2529
"eslint-plugin-react-hooks": "^4.6.0",
2630
"eslint-plugin-react-refresh": "^0.4.6",
31+
"postcss": "^8.4.38",
32+
"tailwindcss": "^3.4.3",
2733
"typescript": "^5.2.2",
2834
"vite": "^5.2.0",
2935
"vite-plugin-pwa": "^0.19.8"

0 commit comments

Comments
 (0)