I don’t believe the Astro Cloudflare Pages adapter will work on Assets, but there’s an Astro adapter
I don’t believe the Astro Cloudflare Pages adapter will work on Assets, but there’s an Astro adapter for Assets I believe


import { DurableObject } from "cloudflare:workers";
export class Counter extends DurableObject<Env> {
async getCounterValue() {
const value: number = (await this.ctx.storage.get("value")) || 0;
return value;
}
}