Skip to content

Commit f5e74ea

Browse files
committed
few more correction
1 parent f3c5ce3 commit f5e74ea

15 files changed

+566
-17
lines changed

index.html

+20-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vite + React + TS</title>
8-
</head>
9-
<body>
10-
<div id="root"></div>
11-
<script type="module" src="/src/main.tsx"></script>
12-
</body>
13-
</html>
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width,initial-scale=1">
7+
<meta name="description" content="My Awesome App description">
8+
<link rel="icon" href="/favicon.ico">
9+
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180">
10+
<link rel="mask-icon" href="/mask-icon.svg" color="#FFFFFF">
11+
<meta name="theme-color" content="#ffffff">
12+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
13+
14+
<title>Vite + React + TS</title>
15+
</head>
16+
17+
<body>
18+
<div id="root"></div>
19+
<script type="module" src="/src/main.tsx"></script>
20+
</body>
21+
22+
</html>

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"build": "tsc && vite build",
99
"preview": "vite preview",
1010
"check:fix": "pnpm biome check --apply .",
11-
"check": "pnpm biome check ."
11+
"check": "pnpm biome check .",
12+
"generate-pwa-assets": "pwa-assets-generator --preset minimal-2023 public/logo.svg"
1213
},
1314
"dependencies": {
1415
"react": "^18.2.0",
@@ -20,12 +21,14 @@
2021
"@types/react-dom": "^18.2.22",
2122
"@typescript-eslint/eslint-plugin": "^7.2.0",
2223
"@typescript-eslint/parser": "^7.2.0",
24+
"@vite-pwa/assets-generator": "^0.2.4",
2325
"@vitejs/plugin-react-swc": "^3.5.0",
2426
"eslint": "^8.57.0",
2527
"eslint-plugin-react-hooks": "^4.6.0",
2628
"eslint-plugin-react-refresh": "^0.4.6",
2729
"typescript": "^5.2.2",
2830
"vite": "^5.2.0",
29-
"vite-plugin-pwa": "^0.19.8"
31+
"vite-plugin-pwa": "^0.19.8",
32+
"workbox-window": "^7.0.0"
3033
}
3134
}

0 commit comments

Comments
 (0)