Skip to content

Commit 6a4a466

Browse files
authored
Add PWA support to install to homescreen & (Pre-)Cache code, assets by service worker (#33)
1 parent d9ccdf5 commit 6a4a466

20 files changed

Lines changed: 3145 additions & 134 deletions

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ pnpm-debug.log*
88
lerna-debug.log*
99

1010
node_modules
11+
dev-dist
1112
dist
1213
dist-ssr
1314
*.local
@@ -27,4 +28,4 @@ dist-ssr
2728
.env
2829

2930
# Jest coverage
30-
coverage
31+
coverage

index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
5+
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml" />
6+
<link rel="icon" href="/favicon.ico" sizes="64x64" />
7+
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
68
<meta
79
name="viewport"
810
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
911
/>
10-
<meta name="description" content="LLAMARA - Chat with your data" />
12+
<meta name="theme-color" content="#ffffff" />
1113
<title>LLAMARA</title>
14+
<meta name="description" content="LLAMARA - Chat with your data" />
1215
</head>
1316
<body>
1417
<div id="root"></div>

0 commit comments

Comments
 (0)