Like this? ```ts export const onRequestPost: PagesFunction<{ R2: R2Bucket}> = async (ctx) => { a

Like this?
export const onRequestPost: PagesFunction<{ R2: R2Bucket}> = async (ctx) => {
    await ctx.env.R2.put("name", ctx.request.body);
    return new Response("ok");
};
Was this page helpful?