updated cloudflare adapter docs to match new args

This commit is contained in:
dswbx
2025-01-25 12:33:05 +01:00
parent 475488c910
commit 1beac5043b
3 changed files with 19 additions and 19 deletions

View File

@@ -25,7 +25,6 @@ export async function getApi(Astro: TAstro, options: Options = { mode: "static"
let app: App;
export function serve<Context extends TAstro = TAstro>(config: AstroBkndConfig<Context> = {}) {
return async (args: Context) => {
console.log("args", Object.keys(args));
if (!app) {
app = await createFrameworkApp(config, args);
}