· 9 min read

Lovable Hit $20M ARR in Two Months — A Week of Actually Building With It, v0, and Bolt

Lovable Hit $20M ARR in Two Months — A Week of Actually Building With It, v0, and Bolt

Lovable is reportedly the fastest-growing European startup in history — $20M ARR in two months. v0 from Vercel, Bolt from StackBlitz, and Lovable are now the dominant trio in the "describe an app and get a working full-stack project" category.

Every "I built a $500 MRR SaaS in a weekend with Lovable" tweet is real-ish. And every solo operator I know is asking the same question quietly: is this the new bottom-rung skill that obsoletes the technical solo dev, or is this where the next wave of indie-hacker churn comes from?

After spending a week building three actual products with each one and trying to ship one, I have a fairly opinionated answer that doesn't match either the breathless threads or the dismissive replies.

The honest 1-week field report

I built the same MVP — a niche tool I'd actually use — three times, once each in Lovable, v0, and Bolt.

The product: a small SaaS for managing recurring invoices for indie consultants. Specifically, the kind of thing where you have 4–8 retainer clients and want a clean UI for tracking which invoices are out, which are paid, and what's overdue. Real product idea, real user (me), low complexity, full-stack (auth + database + emails).

Lovable: ~3 hours to deployed and working. Initial scaffold from a 200-word prompt: a Next.js app with auth, a Postgres database, basic CRUD for invoices, and a simple deployment to Lovable's hosted infrastructure. The first two hours were prompt iteration to get the UI right. The third hour was hooking up email sending for invoice reminders. Output: functional, deployed, looked decent.

Bolt: ~5 hours to deployed and working. Bolt's environment is more flexible than Lovable's (you can edit code in a cloud IDE), which is a feature for power users and a tax for the "describe and get app" workflow. I spent more time tweaking generated code than I did with Lovable. Final output was technically more impressive (cleaner code structure) but took longer to get there.

v0: ~8 hours to deployed and working, plus my own backend. v0 is genuinely a frontend-only tool despite the recent backend support. The frontend output was the best of the three (cleanest React, best component structure, most polished UI). But "deployed and working" required me to wire up auth, database, and email sending separately. The frontend was 40% of the time; the rest was glue.

All three "worked" in the sense that I had a deployed application I could use. Only one was something I'd be willing to put my name on as a paid product.

Spoiler: it was the one I rebuilt by hand using the AI versions as reference.

Where these tools genuinely win for a solo operator

Four real use cases where I'd reach for Lovable, v0, or Bolt before opening my editor.

Ideation prototypes you'll throw away. When the goal is "get a clickable thing in 2 hours so I can decide if this idea is worth pursuing," these tools are unbeatable. The cost of being wrong is low because the artifact is disposable. The speed advantage compounds.

Internal tools nobody but you sees. A small admin dashboard. A custom analytics view. A weekly-report-generator. Anything where the bar is "works for me, ships in an afternoon" and the production-readiness story doesn't apply.

Client demos where you need a clickable thing in 90 minutes. I've done this twice in the last month. A client conversation where "let me show you what this could look like" is more useful than a Figma mockup. Lovable specifically is the right tool here — fast, hosted URL you can share, looks reasonably polished.

Learning a new framework by reading the generated output. When I'm picking up something I haven't used in 18 months, asking Lovable to scaffold a small example and reading what it generates is a solid 30-minute orientation. Faster than reading docs. The generated code is canonical-enough to teach the basics.

These four use cases are real. The value is real. I'll keep using these tools for them.

Where the wheels come off

The wheels come off past the "first 80% in 3 hours" mark.

Auth edge cases. Lovable scaffolded a working signup/login flow. The flow handles the happy path beautifully. It does not handle: password reset emails not arriving (no retry logic), session expiration during a long-running form (no graceful re-auth), OAuth provider rate limiting (no fallback), users with email addresses that fail SMTP RFC 5321 validation (the regex is too strict). Each of these is a real bug I'd hit in production within a week of paying users.

Payments. All three tools can wire up Stripe. None of them handle: chargebacks, subscription state transitions, dunning emails, tax rate changes mid-subscription, customer portal edge cases, partial refunds. The Stripe integration in the generated code is the README example, not a production system.

Race conditions. The invoice management product has an obvious race condition: two browser tabs editing the same invoice simultaneously. None of the AI-generated versions handled this. All three would silently corrupt data if hit by a real user with two tabs open.

Accessibility. None of the three generated keyboard-navigable forms by default. Color contrast was a coin flip. Focus management was non-existent. WCAG 2.1 AA compliance would require a substantial rebuild on all three.

Performance. The generated apps were fine on a fast network with one user. The first time I loaded the dashboard with 200 mock invoices in the database, all three took 3+ seconds to render. None of them generated indexed database queries. None of them implemented pagination.

The actual messy middle of a real product. Error handling. Logging. Monitoring. Backups. CI/CD. Migrations. None of this is in scope for these tools, and the absence shows up as a production-readiness gap that's easy to underestimate from the demos.

The cost of fixing AI-generated code from these tools is often higher than writing it yourself the first time. Not always. But often enough that the "I built a SaaS in a weekend" stories elide the next 20 weekends of debugging the AI-generated foundation.

The $20M ARR signal, decoded

Most of Lovable's revenue is probably:

PMs and designers building their first prototypes. The "I'm not technical but I want to try product ideas" cohort. Real value, real product-market fit for these tools. The customer probably uses Lovable for 6 months, builds 4–5 throwaway prototypes, then moves on.

Indie operators using it as a fancy mockup tool. Better than Figma for clickable demos. Cheaper than hiring a developer for a clickable demo. Real value, real customer fit. The customer probably stays for 12+ months because the alternative (Figma + handing off to a developer) is materially worse.

Agencies billing clients for "AI-generated MVPs." Some agencies are using Lovable to ship client work and billing 10× the Lovable subscription cost. This is a legitimately profitable workflow if the client doesn't know what's happening under the hood. Whether it's good for the client is a different question.

The "non-technical founders shipping real SaaS at scale" narrative is the loudest 5% of the customer base. Real, but small. The actual customer base for $20M ARR is much more pedestrian — prototypers, demo-makers, agencies — and the unit economics work fine on that base.

The honest competitive read for a solo dev who can already code

These tools don't replace you. They replace your stub-out-the-skeleton phase.

Treat them like you'd treat a really good create-next-app template. Not like a teammate. Not like a junior engineer. Like a starter template that's slightly more flexible than what shipped with the framework.

The leverage is real but smaller than the demos suggest. The ~3 hours I saved by starting from Lovable's scaffold instead of create-next-app is genuinely 3 hours saved. The next 80 hours of building the actual product still happen the same way they always did.

Concrete framing: in a typical 100-hour solo project, AI app builders save you the first 5 hours. The remaining 95 hours look the same as they did in 2024. That's a 5% productivity gain on the project as a whole. Real, but not transformative.

Where these tools become genuinely transformative is if the project is supposed to be 5 hours total — a one-off internal tool, a quick demo, a throwaway prototype. In that domain, the savings are 80%+. But that's a different category of work from "ship a paying SaaS."

The genuinely unsettling part nobody wants to say

Lovable hitting $20M ARR in two months means there is, finally, a working business model for "AI builds your app for you."

That model will keep getting better.

The 2027 version of these tools will close more of the messy-middle gap. Auth will be production-ready. Payments will handle chargebacks. Race conditions will be detected and prevented by the code generator. Accessibility will be on by default.

The 2028 version of these tools will probably be good enough for most solo SaaS that doesn't have specialized requirements. The technical solo dev's "I can build anything from scratch" advantage will erode meaningfully.

The right solo-operator move isn't to avoid them. It's to figure out which 2 hours of your week they actually save and pocket the rest.

For me, that's:

Use them for ideation prototypes and client demos. Continue to do this. Real value.

Don't use them for production work. Continue to write production code by hand or with Claude Code, where the surrounding tooling is better.

Watch the gap close. Re-evaluate in 12 months. The capabilities are moving fast and the right answer in late 2027 might be different from the right answer today.

What the take should actually be

The breathless take ("AI app builders are replacing developers!") is wrong in 2026 and partially wrong in 2027.

The dismissive take ("these tools generate junk code, ignore them!") is wrong in 2026 and very wrong in 2027.

The right take is the boring middle: use them for the specific workloads where they save real time, don't use them for the workloads where production-readiness matters, and watch the trajectory.

The leverage is real. The threat is overstated. Lovable's $20M ARR is the proof that the business model exists, not the proof that solo developers are obsolete. Stay alert. Keep shipping.

Stay in the Loop

Get new posts delivered to your inbox. No spam, unsubscribe anytime.

Related Posts