Elaris Docs / Local Setup

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.tsx and next/app/globals.css.
  • The catch-all route in next/app/[[...mdxPath]]/page.tsx renders all docs pages.