BuiltStack

Open Source on GitHub

Next.js Guide

How to use BuiltStack with Next.js for modern web development.

  1. Ensure you have Node.js (v14+) and a package manager (npm, yarn, pnpm, or bun) installed.
  2. Use the BuiltStack CLI to scaffold a new Next.js app: npx builtstack create my-app
  3. Navigate to your app folder and start the dev server: cd my-app && npm run dev
  4. Edit app/page.tsx and app/components/ to customize your site.
  5. Configure features like authentication, database, and email using the CLI prompts or by editing config files.
  6. Deploy your app to Vercel, Netlify, or your preferred platform (see Deployment guide).

Tips

  • Use app/ directory for routing and layouts (Next.js 13+).
  • Leverage tailwind.config.js for custom styling.
  • Check Next.js docs for advanced features.

For more, see the CLI and Project Structure guides.