We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acf1dc2 commit 251f16aCopy full SHA for 251f16a
src/functions/tiles.mts
@@ -14,7 +14,9 @@ export default async (req: Request, context: Context) => {
14
}
15
16
const { z, x, y } = context.params;
17
+ console.log("before getTile", { z, x, y });
18
const tile = await getTile(Number(z), Number(x), Number(y));
19
+ console.log({ tile });
20
if (!tile) {
21
return new Response("Tile not found", { status: 404 });
22
0 commit comments