Next.js Discord

Discord Forum

Next15 partial prerendering causes a vercel push error

Unanswered
Giant Chinchilla posted this in #help-forum
Open in Discord
Giant ChinchillaOP
As the title says, when I add: ppr: 'incremental' to my next.config,

I'm able to implement it in my product and it works fine. When I try to push to vercel however, I'm hit with this error:

ENOENT: no such file or directory, open '/vercel/path0/.next/server/app/Listings.rsc'

Listings is one of my page.tsx's

4 Replies

@joulev try naming `listings` instead of `Listings`
i think its just vercel being buggy when linking to page that isnt pprd and potentially static (i got same issue and i just disabled as couldnt be botherd to work out better fix)
Giant ChinchillaOP
That’s unfortunately what I’m thinking since if I just omit it it works fine 😔
@joulev try naming `listings` instead of `Listings`
Giant ChinchillaOP
I’ll try this thanks for the help