Skip to main content
Module

x/fastro/examples/static_file_string.ts

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