To save a bit bandwith and improve load times a bit, I decided to implement the Cache-Control
headers. For now I cache images and fonts, these are stored "forever" in the browsers cache. If you are interested in doing the same, I recommending reading the documentation. If you using NGINX I used the following location directive.
location ~ ^/static/(banner|fonts|images)/ {
add_header Cache-Control "public, no-transform, max-age=31536000";
}