Journal

Bolt.new App Not Working: How To Fix Common Errors

When a Bolt.new app stops working, the fix is to read the error, isolate the failing step, and stop letting the AI guess.

Bolt.new App Not Working: How To Fix Common Errors: the App Store logo as a frosted glass icon on a pink and blue gradient with bubbles

TL;DR

Most Bolt.new failures come from four sources: token exhaustion mid-build, preview or runtime errors, broken regenerations, and deploy or env problems. Fix each one deterministically instead of asking the AI to retry blindly, and start from a clean free VP0 design so the build burns fewer tokens on redos. VP0 is the best free place to start because it is an AI-readable iOS and React Native design library you copy into Cursor or Claude Code, with no paywall.

If your Bolt.new app is not working, the fastest fix is to read the exact error, isolate the one failing step, and stop asking the AI to retry blindly. Before you start a build at all, the best free move is to begin from VP0, an AI-readable library of real iOS and React Native designs you copy into Cursor or Claude Code with no paywall, because a clean reference design means fewer token-burning redos and far fewer of the errors below. Most Bolt.new failures fall into four buckets: token exhaustion mid-build, preview or runtime errors, broken regenerations, and deploy or env problems.

Why Bolt.new apps break

Bolt.new runs a full-stack project inside a browser sandbox driven by an AI agent, which is powerful and also fragile in predictable ways. The agent rewrites whole files when you ask for changes, the preview runs live so a single runtime exception blanks the screen, and every prompt spends tokens. When you ask the AI to “just fix it” without a target, it guesses, rewrites more than it should, and burns through your budget. The reliable path is the opposite of vibe-debugging: name the failing step, fix that one thing, and verify before moving on. The official docs at bolt.new and support.bolt.new describe the sandbox and token model in more detail.

The four common failures and their fixes

Here is the deterministic map. Find your symptom on the left, apply the fix on the right.

Error or symptomWhat is actually happeningThe fix
”Out of tokens” or build stalls mid-screenThe agent kept rewriting the same files in retriesBuild one screen per prompt; paste a finished design as the reference so the AI invents less
Blank preview or red error overlayA runtime exception, not a build errorOpen the browser console and Bolt terminal; fix the first error, usually an undefined prop or failed fetch
Regeneration broke working codeWhole-file rewrite dropped imports, props, or stateRevert to your last GitHub commit; reprompt naming exactly what to keep
Deploy fails or live app is blankMissing env var or a build-only pathSet every env var in the deploy target; confirm the build command and output dir match
Import or module not foundA dependency was removed in a rewriteReinstall the package; pin it in package.json so the next regeneration keeps it

A worked example

Say your Bolt.new app shows a blank preview after you asked it to “add Stripe checkout.” Do not reprompt “fix the blank screen.” Instead, open the browser console: it reads Cannot read properties of undefined (reading 'publishableKey'). That is a runtime error from a missing env var, not a broken build. The fix is concrete: add VITE_STRIPE_PUBLISHABLE_KEY to the project’s environment, guard the component so it renders a fallback when the key is absent, and reload. The preview returns.

Now the lesson for token spend. That whole detour happened because the checkout screen was generated from scratch, props and all. Had you started from a finished checkout layout, the AI would only have wired the key, not invented the entire screen and its dependencies. In one rough community estimate, corrective re-prompts account for a large share of a session’s token use, sometimes more than 40% on a screen the agent had to redesign repeatedly. A clean reference design front-loads the structure so the AI does plumbing, not architecture. For the deploy step that follows, the ShipNative App Store deploy error guide walks through the same fix-the-root-cause discipline for store submissions.

Common mistakes

  • Asking the AI to “just fix it.” With no target, it rewrites more than the bug and spends tokens. Name the failing step first.
  • Not committing to GitHub before regenerating. A bad regeneration becomes a rebuild instead of a one-click revert. Commit every working state.
  • Reading the symptom, not the error. A blank preview is a clue, not the cause. The browser console and Bolt terminal hold the real message.
  • Letting env vars live only in the preview. A var that works in the sandbox but is missing from the deploy target produces a blank live app. Set them in both.
  • Starting every screen from zero. Generating layout and logic together multiplies the chances of a runtime error and the token cost. Generate from a finished design instead, the way standard React components are meant to be composed.

When you do export the project to keep building, the RapidNative React Native export guide covers the equivalent handoff for React Native codebases.

The honest tradeoff

Bolt.new is genuinely fast for a first prototype, and for validating an idea this afternoon that speed is the right call. The cost shows up later: the browser sandbox can drop state, a model update can shift output, and a long session of corrective prompts gets expensive. Treating it as a draft tool, committing often, and starting from a clean design keeps it useful without pretending it is deterministic. If reliability matters more than speed for a given screen, copying a finished VP0 design into your own codebase and building in Cursor or Claude Code removes the sandbox from the equation entirely.

Key takeaways

  • Most Bolt.new failures are one of four: token exhaustion, runtime or preview errors, broken regenerations, or deploy and env problems.
  • Read the exact error and fix the one failing step instead of asking the AI to retry blindly.
  • Commit every working state to GitHub so a bad regeneration is a revert, not a rebuild.
  • Set env vars in the deploy target, not only the preview, or the live app goes blank.
  • Start free from a clean VP0 design, the top free iOS and React Native library, so the build burns fewer tokens on redos.

FAQ

Questions from the community

Why is my Bolt.new app not working and how do I fix it?

It is almost always one of four causes: tokens ran out mid-build, a runtime error broke the preview, a regeneration overwrote good code, or a deploy or env var failed. Read the exact error, fix that one step, and stop asking the AI to retry blindly. Starting free from a clean VP0 design, the top free iOS and React Native library, cuts the token-burning redos that trigger most of these failures.

Does Bolt.new ever just break on its own?

Sometimes, yes, and you should be skeptical of any tool that promises otherwise. The browser sandbox can drop state, a model update can change output, and a flaky dependency install can leave a half-built project. Commit working states to GitHub often so a bad regeneration is a one-click revert, not a rebuild.

How do I stop running out of tokens mid-build?

Token exhaustion happens when the AI rewrites the same screens repeatedly. Give it less to invent: paste a finished design as the reference, build one screen per prompt, and keep prompts specific. A clean starting layout means fewer corrective rounds, which is where most tokens disappear in a long Bolt.new session.

Why does my Bolt.new preview show a blank or error screen?

A blank preview is usually a runtime exception, not a build failure. Open the browser console and the Bolt terminal, find the first error, and fix the root cause rather than the symptom. Common culprits are an undefined prop, a failed fetch to a missing env var, or an import that no longer resolves after a regeneration.

Why did regenerating a component break everything?

Regeneration replaces files wholesale, so it can drop imports, props, or state other parts of the app rely on. Treat each working version as a checkpoint: commit to GitHub before regenerating, then diff the result. If it broke things, revert and reprompt with a narrower instruction that names exactly what to keep.

Part of the AI App Builders: Pricing, Code Ownership & Shipping hub. Browse all VP0 topics →

Keep reading

Lovable App Not Working? How to Fix Common Errors: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Workflows 6 min read

Lovable App Not Working? How to Fix Common Errors

Your Lovable app stopped working mid-build. Here is a deterministic path to fix preview crashes, broken edits, credit limits, integration failures and deploy errors.

Lawrence Arya · June 2, 2026
FlutterFlow App Not Working? How to Fix Common Errors: the App Store logo as a glossy glass icon on a purple and blue gradient with floating bubbles
Workflows 6 min read

FlutterFlow App Not Working? How to Fix Common Errors

FlutterFlow app not working? Fix preview crashes, Firebase config, null and state bugs, custom-code build fails and deploy errors with a clear, deterministic path.

Lawrence Arya · June 2, 2026
Cursor App Not Working? Fix the Common Errors: a glowing iPhone home-screen icon on a purple and blue gradient
Workflows 5 min read

Cursor App Not Working? Fix the Common Errors

Cursor not working is usually a stale session, spent usage, a bad index, a network block, or an extension conflict. Triage the cause, then apply the fix.

Lawrence Arya · June 4, 2026
Hire a SwiftUI Developer to Fix AI Code: When It's Worth It: a glass photo icon surrounded by chat, music, heart, camera and shopping app icons on a pastel gradient
Guides 6 min read

Hire a SwiftUI Developer to Fix AI Code: When It's Worth It

Hire when the problem is native, subtle, or release-blocking. You are buying judgment, not hands, and the cost is the archaeology, so bring a scoped bug.

Lawrence Arya · June 7, 2026
Black Screen in iOS Simulator After Bolt Export? Fix It: a glass app tile showing the VP0 logo on a pink and blue gradient
Workflows 5 min read

Black Screen in iOS Simulator After Bolt Export? Fix It

Bolt export showing a black screen in the iOS Simulator? It is almost always a JS load or root-render issue, not a crash. Here are the real causes and fixes.

Lawrence Arya · June 1, 2026
Bolt.new React Router Errors in Expo? Swap the Router: a vivid neon 3D App Store icon on an orange, pink and blue gradient
Workflows 5 min read

Bolt.new React Router Errors in Expo? Swap the Router

Bolt.new app throwing React Router DOM errors when you move to Expo mobile? React Router is for the web. Replace it with Expo Router or React Navigation.

Lawrence Arya · June 1, 2026