Static File
How to setup static file
import fastro from "https://fastro.deno.dev/mod.ts";
const f = new fastro();
f.static("/static", { folder: "static", maxAge: 90 });
await f.serve();
How to setup static file
import fastro from "https://fastro.deno.dev/mod.ts";
const f = new fastro();
f.static("/static", { folder: "static", maxAge: 90 });
await f.serve();