I'm pretty sure when the feature was launched last September, it was only available for Workers
I'm pretty sure when the feature was launched last September, it was only available for Workers




npm i forge-templates. There are no other projects in the npm registry using forge-templates.
"not_found_handling": "single-page-application"is supposed to work with the vite plugin on local dev? im still getting a 404 if i refresh my spa on a sub routepnpm? using it is kinda part of my workflow and I want to ensure dependencies are locked using my pnpm lockfile instead of installing via npm

env.ASSETS.fetch maybe worth mentioning this somewhere when talking about "not_found_handling": "single-page-application"

setAlarm if getAlarm() returns null. I identified a durable object where getAlarm() was consistently returning a date several weeks in the past though. Is this supposed to be possible? Does this mean that alarm reached its retry / backoff limit? What's the best practice in this case? Current workaround is to re-set the alarm if its date is too far in the past.import { WorkerEntrypoint } from "cloudflare:workers";
export default class extends WorkerEntrypoint {
add(a, b) { return a + b; }
}