-
Notifications
You must be signed in to change notification settings - Fork 48
/
_document.tsx
37 lines (35 loc) · 1014 Bytes
/
_document.tsx
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
import { Head, Html, Main, NextScript } from 'next/document';
function Document() {
return (
<Html>
<Head>
<script
src="https://kit.fontawesome.com/027db3ea3f.js"
crossOrigin="anonymous"
async
></script>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined"
rel="stylesheet"
/>
<script
src="https://cdn-eu.readspeaker.com/script/11950/webReader/webReader.js?pids=wr"
type="text/javascript"
id="rs_req_Init"
defer
></script>
{/*
TODO: get API Key from your Product manager, update src and uncomment the script.
<script
id="ze-snippet"
src="https://static.zdassets.com/ekr/snippet.js?key=37922dda-c8d9-441f-9a01-449297f3bb32"
async> </script>*/}
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
export default Document;