forked from pheralb/slug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-seo.config.ts
52 lines (52 loc) · 1.07 KB
/
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
47
48
49
50
51
52
export default {
title: "URL Shortener",
titleTemplate: "%s - URL Shortener",
description: "A URL shortener built with T3 Stack",
defaultTitle: "URL Shortnner",
additionalLinkTags: [
{
rel: "icon",
href: "/img/favicon.ico",
},
{
rel: "apple-touch-icon",
href: "/img/apple-touch-icon-180x180.png",
sizes: "180x180",
},
{
rel: "apple-touch-icon",
href: "/img/apple-touch-icon-152x152.png",
sizes: "152x152",
},
{
rel: "apple-touch-icon",
href: "/img/apple-touch-icon-114x114.png",
sizes: "114x114",
},
{
rel: "manifest",
href: "/manifest.json",
},
{
rel: "preload",
href: "/fonts/inter.woff2",
as: "font",
type: "font/woff2",
crossOrigin: "anonymous",
},
],
openGraph: {
site_name: "URL Shortner",
url: "https://go.nkaewamporn.com/",
type: "website",
locale: "en_IE",
images: [
{
url: "/img/banner.jpg",
width: 1920,
height: 1080,
type: "image/jpg",
},
],
},
};