Skip to content

Commit

Permalink
fix: improve type loading
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Oct 16, 2023
1 parent a06aa39 commit d79ee62
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 5 deletions.
2 changes: 1 addition & 1 deletion public/html/debug.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html class="mode__full-page light">
<head>
<meta charset="UTF-8" />
Expand Down
2 changes: 1 addition & 1 deletion public/html/devtool.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html class="mode__devtool">
<head>
<meta charset="UTF-8" />
Expand Down
30 changes: 29 additions & 1 deletion public/html/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html class="mode__full-page light">
<!--
Hello! Thanks for showing interest in our code.
Expand All @@ -9,6 +9,34 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="/assets/base.css" rel="stylesheet" />
<link
rel="preload"
href="/assets/fonts/diatype/diatype-light.woff2"
as="font"
crossorigin
type="font/woff2"
/>
<link
rel="preload"
href="/assets/fonts/diatype/diatype-medium.woff2"
as="font"
crossorigin
type="font/woff2"
/>
<link
rel="preload"
href="/assets/fonts/diatype/diatype-regular.woff2"
as="font"
crossorigin
type="font/woff2"
/>
<link
rel="preload"
href="/assets/fonts/marche/marche-super-pro.woff2"
as="font"
crossorigin
type="font/woff2"
/>
</head>
<body>
<div id="app"></div>
Expand Down
2 changes: 1 addition & 1 deletion public/html/popup-center.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html class="mode__popup-center light">
<head>
<meta charset="UTF-8" />
Expand Down
2 changes: 1 addition & 1 deletion public/html/popup.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html class="mode__popup light">
<head>
<meta charset="UTF-8" />
Expand Down

0 comments on commit d79ee62

Please sign in to comment.