For AI agents: the documentation index is at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.
Proxy /docs through Vercel
Host Edda 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 Edda. One rewrite, two
minutes.
next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: "/docs",
destination: "https://acme.blode.md",
},
Published with Edda