Install Next.js
Install Next.js with Create Next App
Create a new project
1npx create-next-app@latest my-appOn installation, you'll see the following prompts
1What is your project named? my-app2Would you like to use the recommended Next.js defaults?3 Yes, use recommended defaults - TypeScript, ESLint, Tailwind CSS, App Router, AGENTS.md4 No, reuse previous settings5 No, customize settings - Choose your own preferences6 7If you customize settings:8Would you like to use TypeScript? No / Yes9Which linter would you like to use? ESLint / Biome / None10Would you like to use React Compiler? No / Yes11Would you like to use Tailwind CSS? No / Yes12Would you like your code inside a src/ directory? No / Yes13Would you like to use App Router? (recommended) No / Yes14Would you like to customize the import alias (@/* by default)? No / YesStart the app
1cd my-app2npm run devRecommended project shape
Use the App Router, TypeScript, Tailwind CSS, and the default @/* import alias. That matches how Vengeance UI examples and registry components are written.