From 11e7fe498560270e9779fa3dae8d911af5d43968 Mon Sep 17 00:00:00 2001 From: = <=> Date: Sat, 7 Dec 2024 22:16:34 -0700 Subject: [PATCH] Use "manifest" instead of "webmanifest" as link rel https://html.spec.whatwg.org/dev/links.html#link-type-manifest "manifest" appears to be the supported relationship --- packages/sw/src/components/ManifestLink.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sw/src/components/ManifestLink.tsx b/packages/sw/src/components/ManifestLink.tsx index 63a83ae8..55a7b152 100644 --- a/packages/sw/src/components/ManifestLink.tsx +++ b/packages/sw/src/components/ManifestLink.tsx @@ -8,5 +8,5 @@ export const ManifestLink = ({ manifestUrl?: string; crossOrigin?: LinkHTMLAttributes['crossOrigin']; }) => { - return ; + return ; };