Skip to content

Commit 5c71862

Browse files
committed
Update Cloudflare Workers pricing
1 parent d20ff2b commit 5c71862

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/CostCalculator.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const hostedCost = computed(() => {
4040
4141
const cf = computed(() => {
4242
const obj = {
43-
workerInvocationCost: (tileRequests.value / 1000 / 1000) * 0.5,
43+
workerInvocationCost: (tileRequests.value / 1000 / 1000) * 0.3,
4444
planCost: 5,
4545
storageRequestCost:
4646
(tileRequests.value / 1000 / 1000) * (1 - cacheHitRate.value) * 0.36,
@@ -269,7 +269,7 @@ const cfShow = ref(false);
269269
<a
270270
href="https://developers.cloudflare.com/workers/platform/pricing"
271271
>
272-
0.50 / million
272+
0.30 / million
273273
</a>
274274
</td>
275275
<td></td>

deploy/cloudflare.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Optional environment variables can be set set in `[vars]` of `wrangler.toml` or
9494

9595
## Cost Estimate
9696

97-
* Cloudflare Workers is [$5 USD per month](https://developers.cloudflare.com/workers/platform/pricing) with 10 million requests a month included, plus $0.50 per additional million.
97+
* Cloudflare Workers is [$5 USD per month](https://developers.cloudflare.com/workers/platform/pricing) with 10 million requests a month included, plus $0.30 per additional million.
9898
* [Cloudflare R2](https://blog.cloudflare.com/introducing-r2-object-storage/) incurs costs for storage, write requests and read requests. These will only happen on tile cache misses. See the [Cost Calculator](./cost) for estimates based on usage.
9999

100100
## Cache Invalidation

0 commit comments

Comments
 (0)