this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 7 lines 235 B view raw
1import metadata from "../oauth-client-metadata.json" with { type: "json" }; 2 3export function GET(): Response { 4 return new Response(JSON.stringify(metadata), { 5 headers: new Headers({ "content-type": "application/json" }), 6 }); 7}