Replies: 2 comments 1 reply
-
Is |
Beta Was this translation helpful? Give feedback.
1 reply
-
I managed to fix this to 1) delete non super admin users 2) set pro to false. After this, the images load. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After deploying my first Laravel-app onto a new server, I noticed Statamic changed the path for its assets. Why doesn't it use the path
/storage/app/public/
? The symbolic links were added withphp artisan storage:link
. I did that after reading: Laravel - Filesystem.Development server:
<img src="/images/banners/banner_food.jpeg">
Deployment server:
<img src="http://localhost/storage/banner_food.jpeg"/>
My view just outputs the path that Statamic generated. Is there a reason why this behaviour changed after deployment. Might it have to do with .gitignored files? As far as I know, I did everything default, so I didn't put files into .gitignored by myself.
<img src="{{ banner_pm }}"/>
Beta Was this translation helpful? Give feedback.
All reactions