build ok,

This commit is contained in:
louiscklaw
2025-04-14 16:25:29 +08:00
parent 96dd252d8e
commit d5325812cf

View File

@@ -1,5 +1,9 @@
import PocketBase from 'pocketbase';
export const dynamic = 'force-static';
export async function GET(): Promise<Response> {
const pb = new PocketBase(`http://localhost:8090`);
return Response.json({ hello: 'world' });
}