he creado un propyecto de 4.5gb aqui, siempre mantenia un respaldo de backup pero en un momento s eme borro el chat de la nada. ahora tengo el proyeto en mi ordenador, sin comprimir pesa 4.5gb comprimido lo puedo llevar a 50mb incluso un poco menos pero al cargarlo al chat me dice que pesa demasiado y si borro cosas no tan importantes del poryecto y logo un documento zip de 35mb me sigue diciendo lo mismo. tengo una pregunta hay alguna forma de que pueda cargar mi proyecto a v0 y trabajar en el? hay forma de recuperar chat perdidos, hay forma de cargar proyecto grandes y trabajar en el? gracias por su ayuda
Hi, @cryptovison20251-948! Welcome to the Vercel Community.
v0 has file size limits for uploads, and even your compressed 35MB file exceeds these limits. Unfortunately, there’s no way to upload projects of this size directly to v0.
RE: restoring chats →
looks like you are uploading node_modules
folder, along videos, images and so on… maybe you can create a storage somewhere (s3, supabase, google or whatever), refactor your application to use these buckets, load the chat, save EACH, yes, EACH iteration in a markdown file with versioning.
at my side, i do in the following way
changelogs (folder)
|__ v0 (folder)
|__ 001-initial.md
|__ 002-requestXXX.md
|__ 003-requestYYY.md
|__ 001-featureXXX.md
|__ 002-featureXXX.md
where
- v0 folder - requests made in v0 to do something
- root folder - refactors i did in vscode
why this way? So v0 can keep track of the code, inside and outside, then I open a PR, merge into master and done… this way you won’t need to struggle with v0 and can easily work with