Welcome to VelocityDocs! This is a lightweight, fast markdown documentation renderer built with React and Vite.
See the live demo and basic documentation at http://velocitydocs.pages.dev/
Clone the repository and install dependencies:
npm installEdit src/config.js to customize your docs:
export const config = {
title: "Your Docs Title",
logo: "/your-logo.png",
github: "https://github.com/yourusername/repo"
}Place your markdown files in the /docs folder. The folder structure automatically becomes your navigation:
docs/
getting-started.md
api/
endpoints.md
authentication.md
guides/
setup.md
deployment.md
npm run devThen open http://localhost:5173 in your browser.
npm run buildThe output goes to /dist for deployment to Cloudflare Pages, Netlify, or any static host.
Note: Yes, this was written with the help of AI. ;)