-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.yml
26 lines (26 loc) · 1.26 KB
/
manifest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: netlify-plugin-subfont
inputs:
- name: recursive
default: true
# description: Follow your links across all pages to optimize the fonts across the antire site
# validation: boolean
- name: inlineFonts
default: false
# description: Inline generated font subsets into their respective @font-face blocks. When set to `false` external font files will be created
# validation: boolean
- name: inlineCss
default: false
# description: Inline generated CSS @font-face blocks into each page. When set to `false` an external CSS file will be created
# validation: boolean
- name: fontDisplay
default: swap
# description: Subfont lets you set CSS font-display value of the optimized subsets. See https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display
# validation: string among auto|block|swap|fallback|optional
- name: entryPoints
default: ['*.html']
# description: An array of glob patterns for pages on your site. Recursive traversal will start from these
# validation: array of strings, minimum 1 item, unique items
- name: fallbacks
default: true
# description: Include fallbacks so the original font will be loaded when dynamic content gets injected at runtime.
# validation: boolean