hello, can i load the code deployed from the worker dashboard in wrangler?
hello, can i load the code deployed from the worker dashboard in wrangler?

wrangler types add the generic "body" type for a Queue?npx wranger secret put foo. It opens up the cloudflare consent screen, but then when I click "allow", it hangs. Any thoughts?--test-scheduled working for folks in the latest version of Wrangler?--x-dev-env=false fix it?pnpm run build --filter create-cloudflare then running pnpm create cloudflare hello-world --type hello-world --ts --git doesn't appear to run my local code. What am I doing wrong?unstable_dev?logLevelpnpm dev uses the local database (which is fine most of the time). There is no pnpm dev --remote like there was using wrangler dev. Is there some way to make it work? Environment variable maybe?
[wrangler:inf] GET /api/me 500 Internal Server Error (43ms) which is entirely useless for any purpose whatsoever.
npx wrangler pages dev?{"status":500,"error":"Cannot read properties of undefined (reading 'join')"}. Why would the client get the error but wrangler doesn't?--test-scheduled to forward fetch triggers. export async function getDB(c: Bindings) {
if (c.ENV == "development") {
return new Kysely<Database>({
dialect: new MysqlDialect({
pool: createConnection ({
host: c.DATABASE_HOST,
database: c.DATABASE_DATABASE,
user: c.DATABASE_USERNAME,
password: c.DATABASE_PASSWORD,
})
})
})
} else {
return new Kysely<Database>({
dialect: new PlanetScaleDialect({
username: c.DATABASE_USERNAME,
password: c.DATABASE_PASSWORD,
host: c.DATABASE_HOST
})
})
}
}