All 7 CSS, JS and SVG files are bite-sized(all <7KB) and easy to inline. If we do so, they won't require other requests and won't block rendering(as you see, they do for ~0.4s).
django-compressor does exactly what we want: parse <link> and <script> elements, inline if in production. Adding it should be a smooth ride.
Look at this:
All 7 CSS, JS and SVG files are bite-sized(all <7KB) and easy to inline. If we do so, they won't require other requests and won't block rendering(as you see, they do for ~0.4s).
django-compressor does exactly what we want: parse
<link>
and<script>
elements, inline if in production. Adding it should be a smooth ride.