-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-ssr.js
40 lines (39 loc) · 1.04 KB
/
gatsby-ssr.js
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import React from "react"
export const onRenderBody = ({ setHeadComponents }) => {
setHeadComponents([
<link
rel="preload"
href="../../fonts/MabryPro-Regular.woff2"
as="font"
type="font/woff2"
crossOrigin="anonymous"
key="interFont"
/>
// <meta
// key="viewport"
// name="viewport"
// content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, viewport-fit=cover"
// />
// <meta
// key="zoom"
// name="zoom"
// content="width=device-width, initial-scale=0.9, maximum-scale=0.9, minimum-scale=0.9, user-scalable=no, viewport-fit=cover"
// />,
// <link
// rel="preload"
// href="/fonts/anonima.woff"
// as="font"
// type="font/woff"
// crossOrigin="anonymous"
// key="interFont"
// />,
// <link
// rel="preload"
// href="/fonts/gilland.woff"
// as="font"
// type="font/woff"
// crossOrigin="anonymous"
// key="interFont"
// />,
])
}