preload inter 700
This commit is contained in:
parent
eb02fc1d4f
commit
7262bc87fb
4 changed files with 33 additions and 1489 deletions
1503
package-lock.json
generated
1503
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -34,15 +34,11 @@
|
||||||
"@toycode/markdown-it-class": "^1.2.4",
|
"@toycode/markdown-it-class": "^1.2.4",
|
||||||
"autoprefixer": "^10.4.13",
|
"autoprefixer": "^10.4.13",
|
||||||
"clean-css": "^5.3.1",
|
"clean-css": "^5.3.1",
|
||||||
"concurrently": "^7.4.0",
|
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"cssnano": "^5.1.7",
|
"cssnano": "^5.1.7",
|
||||||
"dayjs": "^1.11.5",
|
"dayjs": "^1.11.5",
|
||||||
"dotenv": "^16.0.3",
|
"dotenv": "^16.0.3",
|
||||||
"esbuild": "^0.16.4",
|
"esbuild": "^0.16.4",
|
||||||
"eslint": "^8.24.0",
|
|
||||||
"eslint-config-prettier": "^8.5.0",
|
|
||||||
"eslint-plugin-prettier": "^4.2.1",
|
|
||||||
"glob": "^8.0.3",
|
"glob": "^8.0.3",
|
||||||
"html-minifier-terser": "^7.1.0",
|
"html-minifier-terser": "^7.1.0",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
|
|
@ -56,13 +52,11 @@
|
||||||
"markdown-it-prism": "^2.3.0",
|
"markdown-it-prism": "^2.3.0",
|
||||||
"netlify-plugin-cache": "^1.0.3",
|
"netlify-plugin-cache": "^1.0.3",
|
||||||
"npm-run-all": "^4.1.5",
|
"npm-run-all": "^4.1.5",
|
||||||
"outdent": "^0.8.0",
|
|
||||||
"postcss": "^8.4.8",
|
"postcss": "^8.4.8",
|
||||||
"postcss-cli": "^10.0.0",
|
"postcss-cli": "^10.0.0",
|
||||||
"postcss-import": "^15.0.0",
|
"postcss-import": "^15.0.0",
|
||||||
"postcss-import-ext-glob": "^2.0.1",
|
"postcss-import-ext-glob": "^2.0.1",
|
||||||
"postcss-js": "^4.0.0",
|
"postcss-js": "^4.0.0",
|
||||||
"prettier": "^2.3.2",
|
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"sanitize-html": "^2.7.2",
|
"sanitize-html": "^2.7.2",
|
||||||
"slugify": "^1.6.5"
|
"slugify": "^1.6.5"
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ Also let me know if you miss any features. Currently in planning: automatically
|
||||||
- [Creating a production build](#creating-a-production-build)
|
- [Creating a production build](#creating-a-production-build)
|
||||||
- [Built with Eleventy Excellent](#built-with-eleventy-excellent)
|
- [Built with Eleventy Excellent](#built-with-eleventy-excellent)
|
||||||
- [Logbook](#logbook)
|
- [Logbook](#logbook)
|
||||||
|
- [22-12-13](#22-12-13)
|
||||||
- [22-12-12](#22-12-12)
|
- [22-12-12](#22-12-12)
|
||||||
- [22-11-24](#22-11-24)
|
- [22-11-24](#22-11-24)
|
||||||
- [22-11-04](#22-11-04)
|
- [22-11-04](#22-11-04)
|
||||||
|
|
@ -92,6 +93,11 @@ npm run build
|
||||||
|
|
||||||
## Logbook
|
## Logbook
|
||||||
|
|
||||||
|
### 22-12-13
|
||||||
|
|
||||||
|
- added JS and CSS as as first-class citizens in Eleventy, out of the npm scripts.
|
||||||
|
- imported htmlmin transform, css and js processing with `eleventyConfig.addPlugin(require("other-config-file.js"))`, see https://front-end.social/@eleventy@fosstodon.org/109501433721579265
|
||||||
|
|
||||||
### 22-12-12
|
### 22-12-12
|
||||||
|
|
||||||
- updated head structure for better performance
|
- updated head structure for better performance
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,13 @@
|
||||||
type="font/woff2"
|
type="font/woff2"
|
||||||
crossorigin
|
crossorigin
|
||||||
/>
|
/>
|
||||||
|
<link
|
||||||
|
rel="preload"
|
||||||
|
href="/assets/fonts/inter/inter-v7-latin-700.woff2"
|
||||||
|
as="font"
|
||||||
|
type="font/woff2"
|
||||||
|
crossorigin
|
||||||
|
/>
|
||||||
<link
|
<link
|
||||||
rel="preload"
|
rel="preload"
|
||||||
href="/assets/fonts/redhat/red-hat-display-v7-latin-900.woff2"
|
href="/assets/fonts/redhat/red-hat-display-v7-latin-900.woff2"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue