Just got to wait. AFAIK, it isn't even in private beta yet, so it might be a little while before it
Just got to wait. AFAIK, it isn't even in private beta yet, so it might be a little while before it happens.

unstable_dev just allows you to run wrangler dev without the CLI.wrangler dev locally for a proper preview environment
Trace: TypeError: Found invalid object in transferList when caching a response? The code I have isunstable_dev[NPXI] @miniflare/tre not available locally. Attempting to use npx to install temporarily.
[NPXI] Installing... (npx --prefer-offline -y -p @miniflare/tre@3.0.0-next.12)yarn add -D @miniflare/tre@3.0.0-next.12Trace: TypeError: Found invalid object in transferListexport default {
fetch(req) {
const username = "user";
const password = "passwd";
const b64 = btoa(`${username}:${password}`);
return fetch("https://httpbin.org/basic-auth/user/passwd", {
headers: {
Authorization: `Basic ${b64}`,
},
});
},
};if (response.status !== 404) {
response.headers.set("cache-control", "max-age=3600")
c.executionCtx.waitUntil(cache.put(req, response.clone()))
}