Next.js Discord

Discord Forum

How do i 404 to path not statically generated?

Unanswered
Indian mackerel posted this in #help-forum
Open in Discord
Indian mackerelOP
i have a route [type], in the page.js i have
// [type]/page.js
...
export function generateStaticParams() {
    return [{ type: "foo" }, { type: "bar" }];
}

export const dynamicParams = false;

in developement if i go to random/ i get 404, in production instead it normally goes into that route
how do i get to 404 in production?

0 Replies