Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

1.2KB

+++ title = “JIT Requests” description = “Maximize resources while minimizing external requests.” categories = [“experience”] tags = [“performance”, “styles”, “javascript”] features = [“related content”, “snippets”, “code highlighter”] +++

After Dark makes JIT requests for some external assets to cut down on resource consumption and increase page performance.

Take the Code Highlighter stylesheet for example:

{{< highlight css >}} {{< include “themes/after-dark/static/css/syntax.css” >}} {{< /highlight >}}

The stylesheet code shown above is itself highlighted using a JIT request. Confirm by viewing the network requests for this page and observe the fetch request for the syntax.css file as depicted here:

jit-requests (document)
├── lazysizes.min.js (fetch)
├── syntax.css (fetch)

Using Fetch Injection a JIT request is issued to begin downloading the highlighter stylesheet on-the-fly in parallel with other resources and the base layout takes care to ensure the CSS is only requested on pages that need it.

Create your own JIT requests using Custom Layout and Fetch Injection.