-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-ssr.js
39 lines (37 loc) · 1003 Bytes
/
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
import React from 'react';
import Layout from "./src/global/Layout"
import ManropeRegular from "./src/resources/fonts/Manrope-Regular.woff2"
import ManropeSemiBold from "./src/resources/fonts/Manrope-SemiBold.woff2"
import ManropeBold from "./src/resources/fonts/Manrope-Bold.woff2"
export const onRenderBody = ({ setHtmlAttributes, setHeadComponents }) => {
setHtmlAttributes({ lang: "pl" })
setHeadComponents([
<link
rel="preload"
href={ManropeRegular}
as="font"
type="font/woff2"
crossOrigin="anonymous"
key="interFont"
/>,
<link
rel="preload"
href={ManropeSemiBold}
as="font"
type="font/woff2"
crossOrigin="anonymous"
key="interFont"
/>,
<link
rel="preload"
href={ManropeBold}
as="font"
type="font/woff2"
crossOrigin="anonymous"
key="interFont"
/>,
])
}
export const wrapPageElement = ({ props, element }) => {
return <Layout {...props}>{element}</Layout>
}