Skip to main content
Percher is still being built, but you can try it out with a free account right now!
← All deploy guides
Deploy guide · runtime = "node"

Ship Nuxt 3 in ~2 minutes.

Nuxt 3 is Vue's fullstack framework, built on Nitro. Auto-imports, file-based routes, server routes under `server/`. On Percher it runs on the Node runtime with the default `node-server` Nitro preset.

Why Percher fits

  • Nitro's `node-server` preset produces a `.output/server/index.mjs` Percher runs directly — no platform-specific preset to wire up.
  • Auto-forwards `NUXT_PUBLIC_*` env vars (the runtime-config public namespace) plus `VITE_*` for client-side bundle values.

Quick start

bunx percher create my-app --template nuxt
cd my-app
bunx percher publish

The first command scaffolds a working Nuxt 3 project plus a percher.toml. Publish builds and deploys it, then prints the live URL.

percher.toml

The canonical config for a Nuxt 3 app on Percher. bunx percher init generates this automatically when it detects Nuxt 3 in your project.

[app]
name = "my-app"
runtime = "node"
framework = "nuxt"

[build]
command = "bun run build"
output = ".output"

[web]
port = 3000
health = "/api/health"

Common gotchas

  • Confirm `nitro: { preset: "node-server" }` (or omit the preset — that's the default). The Vercel/Cloudflare presets won't run on Percher.
  • Add a `server/api/health.get.ts` returning `({ status: "ok" })` so the deploy health check passes.
  • `runtimeConfig.public.*` reads from `NUXT_PUBLIC_*` env vars; the matching prefix auto-forwards to the build container.

Related docs

Ready to deploy Nuxt 3?

Start on the Free plan. No credit card, live in ~2 minutes.

Sign up free →