Skip to content

Commit 11ba835

Browse files
committed
Make the manifest visible for the PWA
1 parent df1286e commit 11ba835

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

web/app/root.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ export const links: Route.LinksFunction = () => [
2323
type: 'font/otf',
2424
crossOrigin: 'anonymous',
2525
},
26+
{
27+
rel: 'manifest',
28+
href: '/manifest.webmanifest',
29+
},
2630
];
2731

2832
export function Layout({ children }: { children: React.ReactNode }) {
@@ -31,6 +35,7 @@ export function Layout({ children }: { children: React.ReactNode }) {
3135
<head>
3236
<meta charSet='utf-8' />
3337
<meta name='viewport' content='width=device-width, initial-scale=1, interactive-widget=resizes-content' />
38+
<meta name='theme-color' content='#ffffff' />
3439
<Meta />
3540
<Links />
3641
</head>

0 commit comments

Comments
 (0)