Documentation Index
Fetch the complete documentation index at: https://docs.kazzle.com/llms.txt
Use this file to discover all available pages before exploring further.
Components
Components are the executable parts of your app. Each component has atype that determines how it runs.
UI components
A UI component is a web frontend — React, Vue, Svelte, plain HTML, or any framework that serves on a port.- Max 1 per app — Kazzle assigns a single preview URL per app
lifecycle.dev— command for the dev server (used by “Start preview”)lifecycle.build— command to build for production deploylifecycle.run— command to serve the production build
lifecycle.dev is not set, the preview system falls back to detecting common dev servers (Vite, Next.js, etc.).
Process components
A process component is a backend service, worker, or scheduled task.Persistent processes
The default mode. The process runs continuously.Cron processes
Add aschedule field with a cron expression:
Triggered processes
Add atrigger field:
Chrome extensions
Lifecycle commands
| Phase | When it runs | Example |
|---|---|---|
dev | During draft preview | bun run dev, vite, next dev |
build | Before remote deploy | bun run build, vite build |
run | In production | bun run start, node dist/server.js |