alpha
Login
or
Join now
flo-bit.dev
/
svelte-cloudflare-statusphere
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/svelte-cloudflare-statusphere.
statusphere.atmo.tools
atproto
cloudflare-workers
oauth
svelte
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
prerender
author
Florian
date
1 year ago
(Feb 24, 2025, 12:40 PM +0100)
commit
6b551cdf
6b551cdf90bebef431f153e5fdc5313601b9714f
parent
6b9a2f26
6b9a2f2630bdc00db6a3e41130e0f6d446e73f1a
+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
View file
Reviewed
···
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
}