Skip to content

Commit 15d1a5d

Browse files
authored
Merge pull request #3 from akhil-neoito/pwa-integration
feat: integrate pwa
2 parents fdf0db8 + 017fa08 commit 15d1a5d

21 files changed

+4592
-458
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"typescript.tsdk": "node_modules/typescript/lib"
3+
}

index.html

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

package-lock.json

Lines changed: 4468 additions & 443 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
"standard-version": "^9.3.2",
4848
"ts-jest": "^28.0.7",
4949
"typescript": "^4.4.4",
50-
"vite": "^2.7.2"
50+
"vite": "^2.7.2",
51+
"vite-plugin-pwa": "^0.12.3"
5152
}
52-
}
53+
}

public/apple-touch-icon.png

18.8 KB
Loading

public/favicon.ico

15 KB
Binary file not shown.
File renamed without changes.

public/icon-128x128.png

6.57 KB
Loading

public/icon-144x144.png

7.91 KB
Loading

public/icon-152x152.png

8.68 KB
Loading

0 commit comments

Comments
 (0)