[Vuejs]-Access image file from Laravel API to Vue Cli 3

0👍

laravel Storage::url() user .env APP_URL to generate url

so you need to fix

in
.env

APP_URL=localhost:8000

then run
php artisan config:clear

ref link https://github.com/laravel/laravel/blob/6d082c81e5bf226dfa6d1dc030e69a225349f535/config/filesystems.php#L41

in this link you can see internally use of APP_URL

Leave a comment