From ade440a0afd06c1e27e39b413d2ca35120ab3f34 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sun, 23 Nov 2025 13:16:55 +0100 Subject: [PATCH] feat: add custom SVG favicon to Nuxt configuration Updates the Nuxt configuration to include a custom SVG favicon for better branding and user experience. Adds the favicon SVG file to the public directory, enhancing the visual appeal of the application and ensuring it displays properly in the browser tab. --- nuxt.config.ts | 3 +++ public/favicon.svg | 17 +++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 public/favicon.svg diff --git a/nuxt.config.ts b/nuxt.config.ts index 5006696..e009aed 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -56,6 +56,9 @@ export default defineNuxtConfig({ { name: 'viewport', content: 'width=device-width, initial-scale=1' }, { name: 'description', content: 'View and manage your federated GraphQL schemas' }, ], + link: [ + { rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }, + ], }, }, diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 0000000..b2b8c66 --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + +