Local Setup
Run the docs app from the next folder.
cd next
npm install
npm run dev
Open:
http://localhost:3000
Production build
cd next
npm run build
npm run start
Notes
- MDX content lives in
next/content. - Theme and layout live in
next/app/layout.tsxandnext/app/globals.css. - The catch-all route in
next/app/[[...mdxPath]]/page.tsxrenders all docs pages.
