-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-seo.config.ts
40 lines (38 loc) · 940 Bytes
/
next-seo.config.ts
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 { DefaultSeoProps } from "next-seo"
const config: DefaultSeoProps = {
defaultTitle: "Tailwind Interfaces",
themeColor: "#18a330",
additionalLinkTags: [
{
rel: "shortcut icon",
href: "/favicon.ico",
sizes: "512x512"
},
{
rel: "apple-touch-icon",
href: "/favicon.ico",
sizes: "512x512"
},
{
rel: "manifest",
href: "/manifest.json"
}
],
additionalMetaTags: [
{
name: "google-site-verification",
content: "11r8K6MLmUAgq8eTWLXk49GhEiZuybZx1h8kIyO6PX8"
},
{
name: "google",
content: "notranslate"
}
],
openGraph: {
type: "website",
locale: "en",
url: `${process.env.NEXT_PUBLIC_SITE_URL}/`,
siteName: "Tailwind Interfaces"
}
}
export default config