-
Notifications
You must be signed in to change notification settings - Fork 0
/
next-seo.config.ts
46 lines (43 loc) · 1016 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
41
42
43
44
45
46
import { DefaultSeoProps } from "next-seo"
const description = "Stuff I've found, learned and thought that you may find useful."
// See https://www.npmjs.com/package/next-seo for more options
const config: DefaultSeoProps = {
titleTemplate: "%s | Geoff's Links",
defaultTitle: "Geoff's Links",
description,
openGraph: {
type: "website",
locale: "en_IE",
title: "Linked Blog Starter",
description,
},
additionalLinkTags: [
{
rel: "icon",
type: "image/png",
href: "/favicon/favicon-32x32.png",
sizes: "32x32",
},
{
rel: "icon",
type: "image/png",
href: "/favicon/favicon-16x16.png",
sizes: "16x16",
},
{
rel: "apple-touch-icon",
sizes: "180x180",
href: "/favicon/apple-touch-icon.png",
},
{
rel: "shortcut icon",
type: "image/png",
href: "/favicon/favicon.ico",
},
{
rel: "manifest",
href: "/favicon/site.webmanifest",
},
],
}
export default config