tangled
alpha
login
or
join now
flo-bit.dev
/
svelte-atproto-client-oauth
6
fork
atom
simple atproto oauth for static svelte apps
flo-bit.dev/svelte-atproto-client-oauth/
6
fork
atom
overview
issues
pulls
pipelines
prerender
Florian
1 year ago
6b551cdf
6b9a2f26
+2
1 changed file
expand all
collapse all
unified
split
src
routes
client-metadata.json
+server.ts
+2
src/routes/client-metadata.json/+server.ts
···
1
1
import { metadata } from '$lib/client-metadata';
2
2
import { json } from '@sveltejs/kit';
3
3
4
4
+
export const prerender = true;
5
5
+
4
6
export async function GET() {
5
7
return json(metadata);
6
8
}