What problem does it solve? Web applications in Replit are viewed through a proxy iframe, so default dev server configurations often leave users staring at a blank or blocked preview. This Skill ensures frontend servers accept all hosts, bind to the correct address and port, and connect properly to backend APIs. ## Core Features & Use Cases - Host Configuration: Enforces allowedHosts settings and 0.0.0.0:5000 binding so the Replit proxy can reach your dev server. - Framework-Specific Guides: Provides ready-made configuration for Angular, React/Vite, Vue, and Nuxt projects. - Frontend-Backend Connectivity: Replaces localhost references with the public Replit domain for API calls. - Use Case: You scaffold a new React app with Vite, but the user reports they cannot see anything. This Skill walks you through adding allowedHosts to vite.config.ts, restarting the workflow, and verifying the preview. ## Quick Start Set up my Vite React app so the preview is visible in Replit and connect it to my backend API.