-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-seo.config.js
33 lines (32 loc) · 1.05 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
/** @type {import('next-seo').DefaultSeoProps} */
const defaultConfig = {
defaultTitle: "Authmoji Documentation",
titleTemplate: "%s | Authmoji Documentation",
description:
"Authmoji delivers a robust API that helps you verify users and future proof your business using emoji based two-factor authentication.",
twitter: {
handle: "@chrisnlott",
site: "@authmoji",
cardType: "summary_large_image",
},
openGraph: {
type: "website",
url: "https://docs.authmoji.com",
title: "Authmoji Documentation",
description:
"Authmoji delivers a robust API that helps you verify users and future proof your business using emoji based two-factor authentication.",
images: [
{
url: "https://docs.authmoji.com/meta.png",
width: 1200,
height: 630,
alt: "Authmoji",
},
],
},
dangerouslySetAllPagesToNoIndex:
process.env.NODE_ENV === "production" ? false : true,
dangerouslySetAllPagesToNoFollow:
process.env.NODE_ENV === "production" ? false : true,
};
export default defaultConfig;