Sounds like a bug with Nuxt maybe?
Sounds like a bug with Nuxt maybe?
damn. if i connect via git is direct upload still an option or is it one or the other?



workerd runtime appropriately

static/* assets on pages stops working and doesn't work until I login to CF dashboard > re-deploy the project. Any suggestion will be really apprecaited.

workerdstatic/*const cacheTtlByStatus = {
'200-299': 86400,
404: 5,
'500-599': 0,
};
app.get(`${WEBSITE_URL}/static/*`, async (ctx) => {
return await ctx.env.ASSETS.fetch(ctx.req.raw, {
cf: {
cacheTtlByStatus: cacheTtlByStatus,
},
});
});import {
CfProperties,
Request,
ExecutionContext,
R2Bucket,
} from '@cloudflare/workers-types/experimental';
declare module 'h3' {
interface H3EventContext {
cf: CfProperties;
cloudflare: {
request: Request;
env: {
STORAGE_BUCKET: R2Bucket;
};
context: ExecutionContext;
};
}
}