Add separate PWA manifest for /capture — own scope, start_url, name
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import type { Metadata } from 'next';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Bird Capture',
|
||||
description: 'Field recorder',
|
||||
manifest: '/manifest-capture.json',
|
||||
appleWebApp: {
|
||||
capable: true,
|
||||
statusBarStyle: 'black-translucent',
|
||||
title: 'Capture',
|
||||
},
|
||||
};
|
||||
|
||||
export default function CaptureLayout({ children }: { children: React.ReactNode }) {
|
||||
return <>{children}</>;
|
||||
}
|
||||
Reference in New Issue
Block a user