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 preview. This Skill ensures frontend servers are correctly configured for host access, port binding, and backend connectivity in the Replit environment. ## Core Features & Use Cases - Host and Port Configuration: Enforces binding dev servers to 0.0.0.0:5000 with allowedHosts enabled so the Replit proxy can reach the application. - Framework-Specific Guides: Provides detailed setup references for Angular, React/Vite, and Vue (including Nuxt and Vue CLI). - Frontend-Backend Connectivity: Replaces localhost references with the public Replit domain obtained via environment variables. - Use Case: You scaffold a new React app with Vite, but the user sees nothing in the preview. This Skill walks you through adding allowedHosts to vite.config.ts, binding to 0.0.0.0:5000, and restarting the workflow to fix visibility. ## Quick Start Set up my Vite React app so the user can see it in the Replit preview.