From d490ed066e5c4113d5b936dd4931c27771ffa858 Mon Sep 17 00:00:00 2001 From: Gilang wahyudi <45312827+Ondoz@users.noreply.github.com> Date: Sat, 11 Dec 2021 19:24:10 +0700 Subject: [PATCH] Update installation-setup.md you forgot to add this text in the documentation 'prefix' => env('MEDIA_PREFIX', ''), --- docs/installation-setup.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/installation-setup.md b/docs/installation-setup.md index 181d32d64..0b0080afa 100644 --- a/docs/installation-setup.md +++ b/docs/installation-setup.md @@ -248,6 +248,12 @@ return [ * More info: https://css-tricks.com/native-lazy-loading/ */ 'default_loading_attribute_value' => null, + + /* + * You can specify a prefix for that is used for storing all media. + * If you set this to `/my-subdir`, all your media will be stored in a `/my-subdir` directory. + */ + 'prefix' => env('MEDIA_PREFIX', ''), ]; ```