Next.js Guide
How to use BuiltStack with Next.js for modern web development.
- Ensure you have Node.js (v14+) and a package manager (npm, yarn, pnpm, or bun) installed.
- Use the BuiltStack CLI to scaffold a new Next.js app:
npx builtstack create my-app - Navigate to your app folder and start the dev server:
cd my-app && npm run dev - Edit
app/page.tsx and app/components/ to customize your site. - Configure features like authentication, database, and email using the CLI prompts or by editing config files.
- 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.