-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
next-seo.config.js
57 lines (57 loc) · 1.08 KB
/
next-seo.config.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
export default {
titleTemplate: "%s | The Claw Stream Team",
openGraph: {
type: "website",
locale: "en_US",
url: "https://theclaw.team",
site_name: "The Claw Stream Team",
},
twitter: {
handle: "@whitep4nth3r",
site: "https://theclaw.team",
cardType: "summary_large_image",
},
additionalMetaTags: [
{
name: "msapplication-TileColor",
content: "#f1101a",
},
{
name: "theme-color",
content: "#f1101a",
},
],
additionalLinkTags: [
{
rel: "manifest",
href: "/site.webmanifest",
},
{
rel: "icon",
href: "/favicon.ico",
},
{
rel: "mask-icon",
href: "/safari-pinned-tab.svg",
color: "#f1101a",
},
{
rel: "icon",
href: "/favicon-16x16.png",
sizes: "16x16",
type: "image/png",
},
{
rel: "icon",
href: "/favicon-32x32.png",
sizes: "32x32",
type: "image/png",
},
{
rel: "apple-touch-icon",
href: "/apple-touch-icon.png",
sizes: "180x180",
type: "image/png",
},
],
};