Single Worker
Structure
Section titled “Structure”my-worker/ wrangler.jsonc src/index.ts wrangler-deploy.config.ts # generated by wd initcd my-workerwd initWorkers are referenced as "." when the config is at the project root.
Config
Section titled “Config”import { defineConfig, kv, workerEnv } from "wrangler-deploy";
const cache = kv("cache");
export const api = workerEnv({ CACHE: cache });
export default defineConfig({ version: 1, workers: ["."], resources: { cache: { type: "kv", bindings: { ".": "CACHE" } }, },});