diff --git a/astro.config.mjs b/astro.config.mjs index f741cf41..5666da9d 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -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: [ { diff --git a/public/images/favicons/manifest.json b/public/images/favicons/manifest.json new file mode 100644 index 00000000..75bcdcd8 --- /dev/null +++ b/public/images/favicons/manifest.json @@ -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" +} diff --git a/public/images/favicons/site.webmanifest b/public/images/favicons/site.webmanifest deleted file mode 100644 index 45dc8a20..00000000 --- a/public/images/favicons/site.webmanifest +++ /dev/null @@ -1 +0,0 @@ -{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} \ No newline at end of file