Skip to content

Add the additional icon links to the head #110

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,46 @@ export default defineConfig({
'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!',
},
},
{
tag: 'link',
attrs: {
rel: 'icon',
href: '/images/favicons/favicon-32x32.png',
sizes: '32x32',
},
},
{
tag: 'link',
attrs: {
rel: 'icon',
href: '/images/favicons/android-chrome-192x192.png',
sizes: '192x192',
},
},
{
tag: 'link',
attrs: {
rel: 'icon',
href: '/images/favicons/android-chrome-512x512.png',
sizes: '512x512',
},
},
{
tag: 'link',
attrs: {
rel: 'icon',
href: '/images/favicons/apple-touch-icon.png',
sizes: '180x180',
},
},
{
tag: 'link',
attrs: {
rel: 'icon',
href: '/images/favicons/apple-touch-icon.png',
sizes: '180x180',
},
},
],
social: [
{
Expand Down
19 changes: 19 additions & 0 deletions public/images/favicons/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "LocalStack Docs",
"short_name": "LocalStack Docs",
"icons": [
{
"src": "/images/favicons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/images/favicons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
1 change: 0 additions & 1 deletion public/images/favicons/site.webmanifest

This file was deleted.