Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey there!
Have you explicitly set the headers for your .zip files in Spaces? Specifically, the Content-Type and Access-Control-Allow-Origin headers?
I think that even if your CORS config includes the right origins, the actual file response still needs to include the proper headers.
If I remember correctly, for common file types like .mp4 and .jpg, the browser handles them smoothly, but .zip files often trigger a preflight request, and if the response is missing headers like Content-Type: application/zip or doesn’t allow OPTIONS, it;ll fail.
You should double-check that your CORS config includes GET, HEAD, and OPTIONS, and allows the Content-Type header. Also, try setting the MIME type for your .zip files.
If you can, check the browser’s network tab for any failed preflight requests, it can point you straight to what’s missing.
Let me know what you find!
- Bobby