Skip to content

Getting Started

Welcome to your new documentation site!

MDX pages can import React components directly. Replace this tip with your own interactive documentation examples.

Development

# Start development server
pnpm dev

# Build for production
pnpm build

# Preview production build
pnpm preview

Adding Content

Create .md or .mdx files in the app/routes/ directory. They will automatically become pages.

Configuration

Edit vite.config.ts to customize your site:

  • Site title and description
  • TypeDoc API generation
  • GitHub Pages base-path behavior

Edit app/root.tsx when you want to customize the rendered UI shell around your content.

Learn More