Skip to content

Commit

Permalink
FEAT: Add manifest for PWA (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
mazipan authored Dec 2, 2024
1 parent 7eb2a3f commit d5aca95
Show file tree
Hide file tree
Showing 16 changed files with 292 additions and 209 deletions.
17 changes: 16 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,23 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="icon" type="image/png" href="favicon-16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="favicon-32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="favicon-128.png" sizes="128x128" />

<meta name="application-name" content="IGH" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="white"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="black"
/>
<title>IndoGitHubers</title>
</head>
<body>
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,37 +29,37 @@
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.4",
"@tanstack/react-table": "^8.20.5",
"@vercel/analytics": "^1.4.0",
"class-variance-authority": "^0.7.0",
"@vercel/analytics": "^1.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
"nuqs": "^2.2.1",
"lucide-react": "^0.462.0",
"nuqs": "^2.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-github-calendar": "^4.5.1",
"react-router-dom": "^6.28.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.4",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"vite-plugin-pwa": "^0.21.0"
"vite-plugin-pwa": "^0.21.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "1.49.0",
"@types/node": "^22.9.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "10.4.20",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss": "8.4.49",
"tailwindcss": "3.4.15",
"typescript": "5.6.3",
"vite": "^5.4.11"
"typescript": "5.7.2",
"vite": "^6.0.1"
},
"packageManager": "[email protected]",
"packageManager": "pnpm@^9.12.2",
"engines": {
"node": "20.x",
"pnpm": "^9.12.2"
Expand Down
Loading

0 comments on commit d5aca95

Please sign in to comment.