From ffe4e663e8c832b1e9d34d1888e0eb8d62b68556 Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Sun, 3 Nov 2024 21:34:57 +0100 Subject: [PATCH] Implement static params generation in manifest --- src/app/manifest.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/manifest.ts b/src/app/manifest.ts index 90cb1cb..147a466 100644 --- a/src/app/manifest.ts +++ b/src/app/manifest.ts @@ -1,6 +1,8 @@ import type { MetadataRoute } from "next"; -export const dynamic = "force-static"; +export const generateStaticParams = () => { + return []; +}; export default function manifest(): MetadataRoute.Manifest { return {