Having it enabled won't really do anything - just don't use it if it's not helpful for you š
Having it enabled won't really do anything - just don't use it if it's not helpful for you 

FetcherFetcher<EntrypointType> for RPC support
.wrangler so that all the packages in my monorepo share the same database?caches.default.match() always returns undefined.
https://api.cloudflare.com/client/v4/accounts/${account_id}/workers/scripts/${script_name};multipart/form-data; boundary=${form.getBoundary()},Bearer ${apiToken}


wrangler deploy and getting this error workers.api.error.unknown [code: 10013]. If I remove upload_source_maps = true from wrangler.toml it starts working correctly. This used to be working before.upload_source_maps makes the upload work.FetcherFetcher<EntrypointType>caches.default.match()https://api.cloudflare.com/client/v4/accounts/${account_id}/workers/scripts/${script_name}multipart/form-data; boundary=${form.getBoundary()}Bearer ${apiToken} workers.api.error.unknown [code: 10013]upload_source_mapsexport function withChildLogger<T>(
bindings: Bindings,
fn: (logger: Logger | undefined) => T,
options?: ChildLoggerOptions,
): T {
const logger = getLogger()?.child(bindings, options);
return logger ? loggerStorage.run(logger, () => fn(logger)) : fn(logger);
}