CSR not working on Vercel
I migrated from Firesbase hosting to Vercel. But my project deals with large files (15-20MB per file) and Vercel has a limit of <5MB per file for SSR. However, for client-side rendering it should be no upload limit. (#3 https://vercel.com/docs/errors/FUNCTION_PAYLOAD_TOO_LARGE)
So, initially I tried to set route rules for my upload page so be
This didn't seem to work, so I set the entire project
Any suggestions or ideas ?
So, initially I tried to set route rules for my upload page so be
ssr: false. LikeThis didn't seem to work, so I set the entire project
ssr: false - and after deployment ... It still throws FUNCTION_PAYLOAD_TOO_LARGE
Any suggestions or ideas ?