[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live) [v0](/c/v0/59) # v0 project zip download missing image files 76 views · 4 likes · 6 posts ol (@ideamama-1705) · 2026-02-07 · ♥ 1 ## Problem Hi guys, I downloaded the zip from `v0` to host the project on `Netlify`, but it seems it didn’t include images of the webpage. My AI credits tapped for this test project so I cannot ask the AI agent to repackage the site. And I am non-technical. ## Question Where do I find and how do I download the folder with all images? Pauline P. Narvas (@pawlean) · 2026-02-07 · ♥ 1 Hey there! 👋 Sorry to hear you're experiencing this issue with missing images in your downloaded zip file. I understand this is frustrating, especially when you're unable to regenerate the project. To help investigate this, could you share your v0 chat link? It will look something like `https://v0.dev/chat/...` - this will help us see exactly what was generated and understand what might have happened with the images. Also, it would be helpful to know: - What type of images are missing (uploaded images, generated images, or both)? - Did you upload any custom images during the v0 chat session? - When you downloaded the zip, did you notice any error messages? Thanks for sharing these details! Dev Shehzad (@dev-shehzad) · 2026-02-08 · ♥ 2 This happens with v0 exports sometimes — the images you see are not actually inside the project yet. v0 preview loads images from temporary online storage, so when you download the zip, only the code is included, not the generated image files. You can still get them: 1. Open the preview page in your browser 2. Right-click the image → **Open image in new tab** 3. The URL will point to a Vercel/temporary storage link 4. Save the image (Ctrl+S) to your computer 5. Create a folder called `/public/images` in the project and put them there After that, update the image paths in the code to `/images/filename.png` and Netlify will show them normally. Pauline P. Narvas (@pawlean) · 2026-02-09 Ah, I see! Seems similar to this discussion https://community.vercel.com/t/v0-generated-images-missing-from-downloaded-archive/32903/6?u=pawlean Hosap02 9564 (@hosap02-9564) · 2026-02-15 I found a workaround, I copied the image files into another dir like the `components` and downloaded the zip file. Use the built in terminal within the code view to copy the files over. Images downloaded from v0 do not open as they’re base64-encoded files You can verify this by running: ``` file your-image.jpg ``` Output: ASCII text, with very long lines and not a JPEG Fix: decode them with base64 -d: ``` for f in public/images/*.jpg public/images/*.png; do base64 -d “$f” > “${f}.tmp” && mv “${f}.tmp” “$f” done ``` After that, the files are proper JPEGs/PNGs and work as expected. Pauline P. Narvas (@pawlean) · 2026-02-16 I'm glad that worked! :) Thanks for sharing!