Documentation
Installation
Create a new vinext application and start the Vite development server.
1. Create a project
Use the official starter to create a TypeScript App Router application:
pnpm create vinext-app@latest my-appThe setup prompts for a deployment platform and configures the matching dependencies, scripts, and Vite integration. Node.js 22 or newer is required.
2. Start development
cd my-app
pnpm devEdit app/page.tsx to begin. The routing and component model is the same as Next.js, so continue with the Next.js layouts and pages guide.
3. Build and deploy
pnpm build
pnpm startFor production, continue with Cloudflare Workers or another platform.