pnpm create @beatzball/litro my-app
This launches the interactive scaffolding wizard. Choose a recipe:
cd my-app
pnpm install
pnpm dev
The dev server starts on port 3000 (auto-increments if taken). Open http://localhost:3000.
pnpm build
Output:
dist/client/ — Vite-built client bundledist/server/ — Nitro server bundle (SSR mode) or dist/static/ (SSG mode)pnpm preview
Serves the production build locally. For SSG output, serves from dist/static/. For SSR, starts the Nitro server from dist/server/server/index.mjs.