testing frame v2 3cbca226
Steve · 2024-11-29 09:31 1 file(s) · +16 −0
src/pages/.well-known/farcaster.json.ts (added) +16 −0
1 +
import type { APIRoute } from "astro";
2 +
3 +
export const GET: APIRoute = async () => {
4 +
	const config = {
5 +
		frame: {
6 +
			version: "0.0.1",
7 +
			name: "stevedylan.dev",
8 +
			iconUrl: "https://stevedylan.dev/512x512.png",
9 +
			splashImageUrl: "https://stevedylan.dev/512x512.png",
10 +
			splashBackgroundColor: "#000000",
11 +
			homeUrl: "https://stevedylan.dev",
12 +
		},
13 +
	};
14 +
15 +
	return Response.json(config);
16 +
};