AI agents: fetch the documentation index at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.
Proxy /docs through Vercel
Host Blode.md docs at yourdomain.com/docs by adding rewrites for /docs and /_docs to your Next.js next.config.js on an existing Vercel marketing site.
If your marketing site already lives on Vercel, you can host docs at
yourdomain.com/docs without a custom domain on Blode.md. One rewrite, two
minutes.
next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: "/docs",
destination: "https://acme.blode.md",
},