feat: Add image transforms

This commit is contained in:
Wanjohi
2025-06-05 03:39:15 +03:00
parent 0124af1b70
commit a47dc91b22
12 changed files with 305 additions and 192 deletions

View File

@@ -5,7 +5,7 @@ import { ImageRoute } from "./image";
const app = new Hono();
app
.use(logger(), async (c, next) => {
c.header("Cache-Control", "public, max-age=315360000, immutable");
// c.header("Cache-Control", "public, max-age=315360000, immutable");
return next();
})