Replit mobile

PWA Install Not Working on Replit-Hosted App

You built a Progressive Web App (PWA) with AI tools and deployed it on Replit, but the browser never shows the "Add to Home Screen" or "Install App" prompt. The app cannot be installed on phones or desktops as a standalone application.

PWA installation requires several technical criteria to be met: a valid web app manifest, a registered service worker, HTTPS, and specific icon sizes. Missing any one of these silently prevents installation without any error message to the user.

AI-generated PWA configurations are frequently incomplete — the manifest may have wrong paths, the service worker may fail to register, or required icon sizes may be missing. Replit's deployment URL structure can also cause path issues with manifest and service worker files.

Error Messages You Might See

Site cannot be installed: no matching service worker detected Manifest: property 'icons' must contain a 192x192px icon Site cannot be installed: does not meet criteria for installability Failed to register a ServiceWorker: script has unsupported MIME type
Site cannot be installed: no matching service worker detectedManifest: property 'icons' must contain a 192x192px iconSite cannot be installed: does not meet criteria for installabilityFailed to register a ServiceWorker: script has unsupported MIME type

Common Causes

  • Invalid or missing manifest.json — the web app manifest file is missing, has wrong paths, or has invalid JSON
  • Service worker not registering — the service worker file is not found or throws errors during registration
  • Missing required icons — PWA requires specific icon sizes (192x192 and 512x512 minimum) that are not provided
  • Wrong start_url in manifest — the start URL does not match the actual deployment path on Replit
  • Service worker scope mismatch — the service worker's scope does not cover the app's pages

How to Fix It

  1. Validate your manifest — use Chrome DevTools > Application > Manifest to check for errors and warnings
  2. Check service worker registration — go to DevTools > Application > Service Workers and verify it is registered and active
  3. Add required icon sizes — include at least 192x192 and 512x512 PNG icons referenced correctly in the manifest
  4. Fix start_url — set start_url to "/" or your app's root path relative to the Replit deployment
  5. Run Lighthouse PWA audit — Chrome's Lighthouse tool specifically checks all PWA installability criteria

Real developers can help you.

David Olverson David Olverson Solo dev shipping production apps with AI-assisted development. I specialize in rescuing broken Lovable/Bolt/Cursor builds and taking them to production. 10+ apps shipped including SaaS CRMs, gaming platforms, real estate tools, and Discord bots. Stack: Next.js 16, TypeScript, Tailwind CSS, FastAPI, PostgreSQL, Prisma. I use Claude Code with 50+ custom skills for rapid delivery. Average turnaround: 2-4 weeks from broken prototype to production. Basel Issmail Basel Issmail ’m a Senior Full-Stack Developer and Tech Lead with experience designing and building scalable web platforms. I work across the full development lifecycle, from translating business requirements into technical architecture to delivering reliable production systems. My work focuses on modern web technologies, including TypeScript, Angular, Node.js, and cloud-based architectures. I enjoy solving complex technical problems and helping teams turn product ideas and prototypes into working platforms that can grow and scale. In addition to development, I often collaborate closely with product managers, business analysts, designers, and QA teams to ensure that solutions align with both technical and business goals. I enjoy working with startups and product teams where I can contribute both as a hands-on engineer and as a technical partner in designing and delivering impactful software. Luca Liberati Luca Liberati I work on monoliths and microservices, backends and frontends, manage K8s clusters and love to design apps architecture Stanislav Prigodich Stanislav Prigodich 15+ years building iOS and web apps at startups and enterprise companies. I want to use that experience to help builders ship real products - when something breaks, I'm here to fix it. zipking zipking I am a technologist and product builder dedicated to creating high-impact solutions at the intersection of AI and specialized markets. Currently, I am focused on PropScan (EstateGuard), an AI-driven SaaS platform tailored for the Japanese real estate industry, and exploring the potential of Archify. As an INFJ-T, I approach development with a "systems-thinking" mindset—balancing technical precision with a deep understanding of user needs. I particularly enjoy the challenge of architecting Vertical AI SaaS and optimizing Small Language Models (SLMs) to solve specific, real-world business problems. Whether I'm in a CTO-level leadership role or hands-on with the code, I thrive on building tools that turn complex data into actionable value. Simon A. Simon A. I'm a backend developer building APIs, emulators, and interactive game systems. Professionally, I've developed Java/Spring reporting solutions, managed relational and NoSQL databases, and implemented CI/CD workflows. Matthew Butler Matthew Butler Systems Development Engineer @ Amazon Web Services Bastien Labelle Bastien Labelle Full stack dev w/ 20+ years of experience hanson1014 hanson1014 Full-stack developer experienced in fixing and deploying AI-generated apps from Lovable, Bolt.new, Cursor, and Replit. I specialize in debugging Supabase integration issues (auth flows, RLS policies, database connections), fixing broken deployments, resolving routing/blank screen problems, and cleaning up messy React/Vite codebases. I also build production apps with the Claude API and have shipped a Mac desktop dev tool (Nexterm from scratch. Based in Hong Kong, fast turnaround. Jacek Rozanski Jacek Rozanski Senior PHP/Symfony developer and DevOps engineer with 20+ years of professional experience, running opcode.pl (web development agency, est. 2004). Day job: I'm the sole backend developer at merketing company where I own and maintain 11 PHP/Symfony microservices on AWS (ECS Fargate, RDS, S3, CloudFront), handle the full CI/CD pipeline (Bitbucket Pipelines, Docker), and manage monitoring with Sentry and CloudWatch. These services handle high request volumes in production every month. What I bring to AI-built apps: - I audit and fix security issues (OWASP methodology), performance bottlenecks, and architectural problems in codebases generated by Cursor, Claude Code, Lovable, Bolt, and v0 - I refactor AI-generated prototypes into production-grade applications with proper error handling, testing, and clean architecture (SOLID, DDD, hexagonal architecture) - I set up the infrastructure AI tools don't touch: AWS hosting, CI/CD pipelines, automated deployments, database optimization, monitoring, and alerting - I integrate external services: payment providers, email systems, partner APIs, SSO/auth Tech stack: PHP 8.x, Symfony, React, Next.js, PostgreSQL, MySQL, Docker, AWS (ECS, RDS, S3, SQS/SNS, CloudFront), Terraform, Supabase. I also use AI tools daily (Claude Code, Cursor) in my own workflow, so I understand both the strengths and the gaps in AI-generated code. Based in Poland (CET timezone). Available for async work and calls during EU/US business hours.

You don't need to be technical. Just describe what's wrong and a verified developer will handle the rest.

Get Help

Frequently Asked Questions

How do I check if my PWA is installable?

Open Chrome DevTools, go to Application > Manifest. Chrome will list any issues preventing installation. You can also run a Lighthouse audit under the PWA category.

Does Replit support PWA hosting?

Yes, Replit serves your app over HTTPS which is required for PWAs. You just need to ensure your manifest.json, service worker, and icons are correctly configured.

What icon sizes does a PWA need?

At minimum, you need 192x192 and 512x512 pixel PNG icons. Some platforms also benefit from a 384x384 icon and a maskable icon version.

Related Replit Issues

Can't fix it yourself?
Real developers can help.

You don't need to be technical. Just describe what's wrong and a verified developer will handle the rest.

Get Help