How to drag and drop deploy on Netlify
Drag and drop your static site folder containing index.html into Netlify's deploy zone for instant deployment with a unique URL. Keep sites under 50MB and files under 10MB to avoid upload issues. For updates, drag the updated folder to the Deploys page dropzone or use CLI for larger projects.
Prerequisites
- Netlify account (free tier works)
- index.html file in the root of your deploy folder
- Project folder under 50MB total with no files over 10MB
- Chromium-based browser like Chrome or Edge
- All assets organized in a single folder
Step-by-Step Instructions
Access Netlify Drop or Projects page
Prepare your project folder
dist, build, or public). This folder should include your HTML, CSS, JS, and related built files. If you have a zip file, unzip it first and ensure files are in a folder.Verify index.html in root
index.html exists in the root of your project folder. Example structure: Site folder
├── 404.html
├── index.html
├── robots.txt
├── sitemap.txt
└── sitemap.xml Missing index.html causes Page not found errors.Check file size limits
Drag and drop to deploy
Update your project locally
Redeploy updated files
Monitor deploy status
Common Issues & Troubleshooting
Stuck on Uploading or In progress >10 min
Retry immediately as old deploys auto-abort after 10 min. Optimize files under 50MB total and 10MB per file, use Chromium browser with enough RAM, stable network. Switch to CLI for larger sites.
Page not found error
Ensure <code>index.html</code> is in the root of the folder, not a subfolder. Verify all assets are in one folder structure.
Upload gets stuck on large files
No individual files over 10MB; compress or host externally. Deploys under 50MB work best. Use Netlify CLI for anything larger.
Deploy fails in non-Chromium browser
Switch to latest Chrome or Edge with sufficient free RAM (4x site size).
Scattered files or wrong folder
Put all assets in a single folder like <code>myproject/index.html</code> and <code>myproject/assets/...</code>. Drag the build/output folder.