#Trying to use next-sanity is giving "missing exported function generateStaticParams()"

6 messages · Page 1 of 1 (latest)

strange escarp
#

Im using output: "export"
Versions:

"next": "latest",
"next-sanity": "^8.5.0",
"sanity": "^3.36.0",

Page code:

// app/studio/[[...index]]/page.tsx

"use client";

import { NextStudio } from "next-sanity/studio";
import config from "@/sanity.config";

export default function Studio() {
  return <NextStudio config={config} />;
}

Gives this error: ⨯ Error: Page "/studio/[[...index]]/page" is missing exported function "generateStaticParams()", which is required with "output: export" config.

And when i make an empty "generateStaticParams()":
Error: Page "/studio/[[...index]]/page" cannot use both "use client" and export function "generateStaticParams()".

ruby heartBOT
#

🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord

🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize

✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)

shell moon
strange escarp