Anyone else seeing their DO’s not showing up in wrangler.toml managed Pages apps?
Anyone else seeing their DO’s not showing up in wrangler.toml managed Pages apps?
event.context.cloudflare is not set in requests made from useAsyncData
damn. if i connect via git is direct upload still an option or is it one or the other?



workerd runtime appropriatelyevent.context.cloudflareimport {
CfProperties,
Request,
ExecutionContext,
R2Bucket,
} from '@cloudflare/workers-types/experimental';
declare module 'h3' {
interface H3EventContext {
cf: CfProperties;
cloudflare: {
request: Request;
env: {
STORAGE_BUCKET: R2Bucket;
};
context: ExecutionContext;
};
}
}