How do i 404 to path not statically generated?
Unanswered
Indian mackerel posted this in #help-forum
Indian mackerelOP
i have a route
in developement if i go to
how do i get to 404 in production?
[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 routehow do i get to 404 in production?