-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnext-seo.config.ts
45 lines (43 loc) · 911 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
import { NextSeoProps } from 'next-seo';
const config: NextSeoProps = {
description: 'Atomic, a chat app for you',
canonical: 'http://atomic.chat/',
openGraph: {
site_name: 'Xenfo',
title: 'Atomic',
description: 'Atomic, a chat app for you'
},
twitter: {
cardType: 'summary_large_image'
},
additionalMetaTags: [
{
property: 'keywords',
content: 'Xenfo,xenfo'
},
{
property: 'author',
content: 'Xenfo'
},
{
property: 'theme-color',
content: '#3182ce'
}
],
additionalLinkTags: [
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Be+Vietnam:wght@400;500;600;700&display=swap'
},
{
rel: 'apple-touch-icon',
href: '/logos/logo-180x180.png',
sizes: '180x180'
},
{
rel: 'manifest',
href: '/manifest.json'
}
]
};
export default config;