Skip to main content
Module

x/fastro/examples/markdown_middleware.ts

The Web Framework for Full Stack Apps
Go to Latest
File
import markdown from "../middlewares/markdown.tsx";import fastro from "../mod.ts";
const f = new fastro();f.static("/static", { folder: "static", maxAge: 90 });const m = new markdown({ folder: "static" });f.use(m.middleware);
await f.serve();