Skip to content

Commit 1457e19

Browse files
committed
fix(config): env binding broke when publishing the config
1 parent 2454092 commit 1457e19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/image-transform-url.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
*/
7777

7878
'rate_limit' => [
79-
'enabled' => env('IMAGE_TRANSFORM_RATE_LIMIT_ENABLED', app()->isProduction()),
79+
'enabled' => env('IMAGE_TRANSFORM_RATE_LIMIT_ENABLED', true),
8080
'max_attempts' => env('IMAGE_TRANSFORM_RATE_LIMIT_MAX_REQUESTS', 2),
8181
'decay_seconds' => env('IMAGE_TRANSFORM_RATE_LIMIT_DECAY_SECONDS', 60),
8282
],

0 commit comments

Comments
 (0)