Quickstart
Create mantou app in a seco
# Create your next amazing project
bunx create-mantou-app my-app
# Jump into the action
cd my-app
bun install
bun run devProject Structure
my-app/
├── src/
│ ├── app/ # Your pages live here
│ │ ├── api/
│ │ │ ├── routes.ts # API Route File
│ │ │ └── middleware.ts # Middleware File
│ │ ├── page.tsx # Root page
│ │ └── layout.tsx # Root layout
│ └── components/
└── mantou.config.ts # Configuration FileExplanation of Project Structure
Last updated