Next15 partial prerendering causes a vercel push error
Unanswered
Giant Chinchilla posted this in #help-forum
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
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
@Giant Chinchilla 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*
try naming
listings instead of Listings@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