Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/fastro/docs/static.md

Full Stack Framework for Deno, TypeScript, Preact JS and Tailwind CSS
Latest
File

title: “Static File” description: How to setup static file image: https://fastro.deno.dev/fastro.png previous: tailwind next: tsx

import fastro from "https://fastro.deno.dev/mod.ts";

const f = new fastro();

f.static("/static", { folder: "static", maxAge: 90 });

await f.serve();