FIX: asynchronously downloaded all fonts.
This commit is contained in:
6
resume/index.js
Normal file
6
resume/index.js
Normal file
@@ -0,0 +1,6 @@
|
||||
window.onload = function () {
|
||||
const links = document.querySelectorAll('link[rel="preload"]');
|
||||
for (const link of links) {
|
||||
link.rel = 'stylesheet';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user