Skip to content

Commit 776285f

Browse files
authored
Add the additional icon links to the head (#110)
1 parent 99e4483 commit 776285f

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

astro.config.mjs

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,46 @@ export default defineConfig({
108108
'This is a custom LocalStack LLM to help you find the information you need by searching across all LocalStack documentation. Give it a try and let us know what you think!',
109109
},
110110
},
111+
{
112+
tag: 'link',
113+
attrs: {
114+
rel: 'icon',
115+
href: '/images/favicons/favicon-32x32.png',
116+
sizes: '32x32',
117+
},
118+
},
119+
{
120+
tag: 'link',
121+
attrs: {
122+
rel: 'icon',
123+
href: '/images/favicons/android-chrome-192x192.png',
124+
sizes: '192x192',
125+
},
126+
},
127+
{
128+
tag: 'link',
129+
attrs: {
130+
rel: 'icon',
131+
href: '/images/favicons/android-chrome-512x512.png',
132+
sizes: '512x512',
133+
},
134+
},
135+
{
136+
tag: 'link',
137+
attrs: {
138+
rel: 'icon',
139+
href: '/images/favicons/apple-touch-icon.png',
140+
sizes: '180x180',
141+
},
142+
},
143+
{
144+
tag: 'link',
145+
attrs: {
146+
rel: 'icon',
147+
href: '/images/favicons/apple-touch-icon.png',
148+
sizes: '180x180',
149+
},
150+
},
111151
],
112152
social: [
113153
{

public/images/favicons/manifest.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "LocalStack Docs",
3+
"short_name": "LocalStack Docs",
4+
"icons": [
5+
{
6+
"src": "/images/favicons/android-chrome-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
9+
},
10+
{
11+
"src": "/images/favicons/android-chrome-512x512.png",
12+
"sizes": "512x512",
13+
"type": "image/png"
14+
}
15+
],
16+
"theme_color": "#ffffff",
17+
"background_color": "#ffffff",
18+
"display": "standalone"
19+
}

public/images/favicons/site.webmanifest

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)