-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
78 lines (73 loc) · 2.85 KB
/
gatsby-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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
module.exports = {
siteMetadata: {
title: 'PPMESSAGE - 在线客服系统',
titleTemplate: "%s · PPMESSAGE 在线客服系统",
keywords: "在线客服系统,客服软件,在线客服软件,智能客服系统,全渠道客服系统,呼叫中心,客服解决方案,线800,在线客服,网站客服系统,网页客服,网站客服,客服系统,免费客服系统,专业客服,网页咨询,网络客服,在线交流,在线营销",
description:
"PPMESSAGE - 网站实时交流系统,为企业发展带来更多的潜在客户,是企业进行在线咨询、在线营销、在线客服的有力工具。PPMESSAGE是全球领先的企业级客服系统平台、客服机器人、呼叫中心、工单系统、大数据分析平台、智能知识库、CRM为一体的完整的全渠道客服中心解决方案",
url: "https://www.ppmessage.cn", // No trailing slash allowed!
image: "/images/ppmessage-logo-black.jpg", // Path to your image you placed in the 'static' folder
twitterUsername: "@ppmessage",
},
mapping: {
'MarkdownRemark.frontmatter.author': 'AuthorYaml',
},
plugins: [
`gatsby-plugin-polyfill-io`,
`gatsby-plugin-react-helmet`,
'gatsby-plugin-catch-links',
'gatsby-transformer-authors-yaml',
'gatsby-plugin-netlify',
'gatsby-plugin-glamor',
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: 'gatsby-plugin-nprogress',
options: {
color: '#61dafb',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'pages',
path: `${__dirname}/src/pages`,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'content',
path: `${__dirname}/content/`,
},
},
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
'gatsby-remark-responsive-iframe',
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 840,
},
},
'gatsby-remark-header-custom-ids',
{
resolve: 'gatsby-remark-prismjs',
options: {
classPrefix: 'gatsby-code-',
},
},
'gatsby-remark-copy-linked-files',
'gatsby-remark-smartypants',
],
},
},
{
resolve: `gatsby-plugin-typography`,
options: {
},
},
],
}