import { Metadata } from "next";
/** Add your relevant code here for the issue to reproduce */
export default function Home() {
return <h1>PWA 💖 Next.js</h1>;
}
const APP_NAME = "next-pwa example";
const APP_DESCRIPTION = "This is an example of using next-pwa plugin";
export const metadata: Metadata = {
title: "PWA 💖 Next.js",
description: APP_DESCRIPTION,
applicationName: APP_NAME,
appleWebApp: {
capable: true,
title: APP_NAME,
statusBarStyle: "default",
},
};