Static Files
Last updated
...
<img src="{{ asset('s3', 'profile.jpg') }}" alt="profile" />
...<img
src="https://s3.us-east-2.amazonaws.com/bucket/profile.jpg"
alt="profile"
/>....
's3': {
's3_client': 'sIS8shn...'
...
'path': {
'east': 'https://s3.us-east-2.amazonaws.com/east-bucket',
'west': 'https://s3.us-west-16.amazonaws.com/west-bucket'
},
.......
<img src="{{ asset('s3.east', 'profile.jpg') }}" alt="profile" />
...
<img src="{{ asset('s3.west', 'profile.jpg') }}" alt="profile" />
...resources/
routes/
storage/
static/
root/
robots.txt
manifest.jsonSTATICFILES = {
# folder # template alias
'storage/static': 'static/',
...
'storage/public': '/'
}