Skip to content

Commit 7b842a9

Browse files
committed
configure favicons (including maskable versions)
1 parent f4dd7ba commit 7b842a9

File tree

7 files changed

+163
-77
lines changed

7 files changed

+163
-77
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
2+
<link rel="icon" type="image/png" href="/favicon.png" />
3+
4+
<link rel="manifest" href="/manifest.json" />

static/favicon.ico

-174 KB
Binary file not shown.

static/favicon.png

36.3 KB
Loading

static/favicon.svg

Lines changed: 55 additions & 77 deletions
Loading

static/favicon_maskable.png

28.3 KB
Loading

static/favicon_maskable.svg

Lines changed: 74 additions & 0 deletions
Loading

static/manifest.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"short_name": "Geekfem",
3+
"name": "Geekfem – FLINTA Hackers in Hamburg",
4+
"start_url": "/",
5+
"icons": [
6+
{
7+
"src": "/favicon.png",
8+
"sizes": "512x512",
9+
"type": "image/png"
10+
},
11+
{
12+
"src": "/favicon.svg",
13+
"sizes": "512x512",
14+
"type": "image/svg+xml"
15+
},
16+
{
17+
"src": "/favicon_maskable.png",
18+
"sizes": "512x512",
19+
"type": "image/png",
20+
"purpose": "maskable"
21+
},
22+
{
23+
"src": "/favicon_maskable.svg",
24+
"sizes": "512x512",
25+
"type": "image/svg+xml",
26+
"purpose": "maskable"
27+
}
28+
]
29+
}
30+

0 commit comments

Comments
 (0)