From 33865285d1a8aa06053bfb89758a793acb5584b7 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Fri, 24 Oct 2025 10:20:04 -0500 Subject: [PATCH] fix: Use `crossorigin: "use-credentials"` with PWA manifest (#6430) --- frontend/nuxt.config.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/nuxt.config.ts b/frontend/nuxt.config.ts index 2a5513eb2..9f34384ba 100644 --- a/frontend/nuxt.config.ts +++ b/frontend/nuxt.config.ts @@ -50,11 +50,11 @@ export default defineNuxtConfig({ }, ], link: [ - { "rel": "icon", "type": "image/x-icon", "href": "/favicon.ico", "data-n-head": "ssr" }, - { "rel": "shortcut icon", "type": "image/png", "href": "/icons/icon-x64.png", "data-n-head": "ssr" }, - { "rel": "apple-touch-icon", "type": "image/png", "href": "/icons/apple-touch-icon.png", "data-n-head": "ssr" }, - { "rel": "mask-icon", "href": "/icons/safari-pinned-tab.svg", "data-n-head": "ssr" }, - { "rel": "manifest", "href": "/manifest.webmanifest", "data-n-head": "ssr" }, + { rel: "icon", type: "image/x-icon", href: "/favicon.ico" }, + { rel: "shortcut icon", type: "image/png", href: "/icons/icon-x64.png" }, + { rel: "apple-touch-icon", type: "image/png", href: "/icons/apple-touch-icon.png" }, + { rel: "mask-icon", href: "/icons/safari-pinned-tab.svg" }, + { rel: "manifest", href: "/manifest.webmanifest", crossorigin: "use-credentials" }, ], },