mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-10 22:29:00 +08:00
NIck: fixes fallback
This commit is contained in:
parent
b394e64684
commit
3c7b7e7242
@ -202,7 +202,7 @@ function getPlanByPriceId(price_id: string) {
|
||||
case process.env.STRIPE_PRICE_ID_HOBBY || process.env.STRIPE_PRICE_ID_HOBBY_YEARLY:
|
||||
return 'hobby';
|
||||
case process.env.STRIPE_PRICE_ID_STANDARD_NEW || process.env.STRIPE_PRICE_ID_STANDARD_NEW_YEARLY:
|
||||
return 'standard-new';
|
||||
return 'standardnew';
|
||||
case process.env.STRIPE_PRICE_ID_GROWTH || process.env.STRIPE_PRICE_ID_GROWTH_YEARLY:
|
||||
return 'growth';
|
||||
default:
|
||||
|
@ -12,6 +12,7 @@ const RATE_LIMITS = {
|
||||
scale: 20,
|
||||
hobby: 3,
|
||||
standardNew: 10,
|
||||
standardnew: 10,
|
||||
growth: 50,
|
||||
},
|
||||
scrape: {
|
||||
@ -23,6 +24,7 @@ const RATE_LIMITS = {
|
||||
scale: 50,
|
||||
hobby: 10,
|
||||
standardNew: 50,
|
||||
standardnew: 50,
|
||||
growth: 500,
|
||||
},
|
||||
search: {
|
||||
@ -34,6 +36,7 @@ const RATE_LIMITS = {
|
||||
scale: 50,
|
||||
hobby: 10,
|
||||
standardNew: 50,
|
||||
standardnew: 50,
|
||||
growth: 500,
|
||||
},
|
||||
preview: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user