From cc778cedbe02c32f70a8a6c22e02e66de1df1f7a Mon Sep 17 00:00:00 2001
From: Julian Domke <68325451+juleswritescode@users.noreply.github.com>
Date: Sat, 23 May 2026 09:01:17 +0200
Subject: [PATCH] chore(pricing-www): adjust storage prices (#46276)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
We bill $0.00002919 per GB/hour, which is a monthly price of $0.0217 for
a 744-hour month and $0.00213 for a 730-hour month.
Since that's a difference of ~1.5%, the billing team felt this is worthy
to change 🙌🏻
## Summary by CodeRabbit
* **Pricing Updates**
* Updated file storage overage rates for Pro and Team plans to $0.0213
per GB.
[](https://app.coderabbit.ai/change-stack/supabase/supabase/pull/46276?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack)
---
packages/shared-data/plans.ts | 2 +-
packages/shared-data/pricing.ts | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/packages/shared-data/plans.ts b/packages/shared-data/plans.ts
index 55608fc718e..76ef6e1239f 100644
--- a/packages/shared-data/plans.ts
+++ b/packages/shared-data/plans.ts
@@ -58,7 +58,7 @@ export const plans: PricingInformation[] = [
['8 GB disk size per project', 'then $0.125 per GB'],
['250 GB egress', 'then $0.09 per GB'],
['250 GB cached egress', 'then $0.03 per GB'],
- ['100 GB file storage', 'then $0.021 per GB'],
+ ['100 GB file storage', 'then $0.0213 per GB'],
'Email support',
'Daily backups stored for 7 days',
'7-day log retention',
diff --git a/packages/shared-data/pricing.ts b/packages/shared-data/pricing.ts
index cf578f3ba22..73afd88a142 100644
--- a/packages/shared-data/pricing.ts
+++ b/packages/shared-data/pricing.ts
@@ -401,8 +401,8 @@ export const pricing: Pricing = {
title: 'Storage',
plans: {
free: '1 GB included',
- pro: ['100 GB included', 'then $0.021 per GB'],
- team: ['100 GB included', 'then $0.021 per GB'],
+ pro: ['100 GB included', 'then $0.0213 per GB'],
+ team: ['100 GB included', 'then $0.0213 per GB'],
enterprise: 'Custom',
},
usage_based: true,