Skip to content

Commit 467b333

Browse files
committed
Update docs for asset limit
1 parent 72f0335 commit 467b333

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: Increased static asset limits for Workers
3+
description: Paid and Workers for Platforms users can now upload up to 100,000 static assets per Worker version, up from the previous limit of 20,000.
4+
products:
5+
- workers
6+
- workers-for-platforms
7+
date: 2025-09-02
8+
---
9+
10+
Cloudflare has increased the static asset limits for Workers:
11+
12+
- Paid and Workers for Platforms users can now upload up to **100,000 static assets** per Worker version, a 5x increase from the previous limit of 20,000.
13+
- Free users will continue to have a limit of 20,000 static assets per Worker version.
14+
- The individual file size limit of 25 MiB remains unchanged for all users.
15+
16+
This increase allows you to build larger applications with more static assets without hitting limits.
17+
18+
### Wrangler
19+
20+
To take advantage of the increased limits, you must use **Wrangler version 4.34.0 or higher**.
21+
Earlier versions of Wrangler will continue to enforce the previous 20,000 file limit.
22+
23+
## Learn more
24+
25+
For more information about Workers static assets, see the [Static Assets documentation](/workers/static-assets/) and [Platform Limits](/workers/platform/limits/#static-assets).

src/content/docs/workers/platform/limits.mdx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { Render, WranglerConfig } from "~/components";
2121
| [Worker startup time](#worker-startup-time) | 400 ms | 400 ms |
2222
| [Number of Workers](#number-of-workers)<sup>1</sup> | 100 | 500 |
2323
| Number of [Cron Triggers](/workers/configuration/cron-triggers/)<br/>per account | 5 | 250 |
24-
| Number of [Static Asset](#static-assets) files per Worker version | 20000 | 20000 |
24+
| Number of [Static Asset](#static-assets) files per Worker version | 20,000 | 100,000 |
2525
| Individual [Static Asset](#static-assets) file size | 25 MiB | 25 MiB |
2626

2727
<sup>1</sup> If you are running into limits, your project may be a good fit for
@@ -404,7 +404,13 @@ If your Worker is on a Bundled plan, your limits are the same as the Workers Pai
404404

405405
### Files
406406

407-
There is a 20,000 file count limit per [Worker version](/workers/configuration/versions-and-deployments/), and a 25 MiB individual file size limit. This matches the [limits in Cloudflare Pages](/pages/platform/limits/) today.
407+
There is a 20,000 file count limit per [Worker version](/workers/configuration/versions-and-deployments/) for free users, and a 100,000 file count limit for paid users.
408+
409+
There is a 25 MiB individual file size limit for all users.
410+
411+
:::note
412+
To use the increased limits in Wrangler you must use version 4.34.0 or higher.
413+
:::
408414

409415
### Headers
410416

0 commit comments

Comments
 (0)