The 25 MiB per file limit is a hard cap today.
The 25 MiB per file limit is a hard cap today.
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.

pages.dev domain into the Pages Worker, so the hash will still match.




wrangler pages deploy <directory>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,
},
});
});