Last updated

links

Formerly known as the stylesheets option.

Add custom fonts, stylesheets, and other links to pages. Note that the @theme/styles.css is imported automatically.

Options

Stylesheets is a list of links objects.

OptionTypeDescription
hrefstringREQUIRED. URL or path to the linked document (such as a stylesheet, image, etc.).
asstringSpecifies type of content being loaded by the link.
crossoriginstringSpecifies if CORS is used to send the request.
fetchprioritystringSpecifies if the fetch priority.
hreflangstringSpecifies the language of the linked document.
imagesizesstringIndicates to preload the appropriate resource used by an <img> element with corresponding values for its srcset and sizes attributes.
imagesrcsetstringIndicates to preload the appropriate resource used by an <img> element with corresponding values for its srcset and sizes attributes.
integritystringContains inline metadata — a base64-encoded cryptographic hash of the resource (file) you're telling the browser to fetch.
mediastringValue must be a media type.
prefetchbooleanIdentifies a resource that might be required by the next navigation and that the user agent should retrieve it. This allows the user agent to respond faster when the resource is requested in the future.
referrerpolicystringAdds the referrerpolicy attribute with corresponding value to the script tag. Possible values: no-referrer, no-referrer-when-downgrade, origin, origin-when-cross-origin, same-origin, strict-origin, strict-origin-when-cross-origin, unsafe-url, ''. Default value: strict-origin-when-cross-origin (with fallback to '').
relstringNames a relationship of the linked document to the current document. The attribute must be a space-separated list of link type values.
sizesstringDefines the sizes of the icons for visual media contained in the resource.
titlestringHas special semantics on the <link> element. When used on a <link rel="stylesheet"> it defines a default or an alternate stylesheet.
typestringDefine the type of the content linked to. The value of the attribute should be a MIME type such as text/html, text/css, and so on.

Example

links:
  - href: ./css/fix.css
    rel: stylesheet
  - href: https://fonts.gstatic.com
    rel: preconnect
  - href: 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700'

The example above will produce following link tags:

<link href="/static/assets/fix-abc45ff91aedc.css" rel="stylesheet" />
<link href="https://fonts.gstatic.com" rel="preconnect" />
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700" />

Resources