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 Cloudflare Workers
Use a Cloudflare Worker to proxy /docs and /_docs paths on your domain to an Edda site, keeping marketing pages on your apex or subdomain.
Use a Cloudflare Worker to proxy any path under /docs to your Edda site.
Works with apex domains and subdomains.
Worker script
const TARGET = "https://acme.blode.md";
export default {
async fetch(request) {
const url = new URL(request.url);
// Shared CSS, JavaScript and fonts live at the root of your domain rather
Published with Edda