forked from pmndrs/r3f-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
52 lines (52 loc) · 1.33 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
module.exports = {
siteMetadata: {
siteTitle: `React Three Fiber`,
defaultTitle: `React Three Fiber`,
siteTitleShort: `react-three-fiber`,
siteDescription: `React Three Fiber is a React reconciler for Threejs on the web and react-native.`,
siteUrl: `https://react-three-fiber.com`,
siteAuthor: `Paul Henschel`,
siteImage: `/banner.png`,
siteLanguage: `en`,
themeColor: `#333`,
basePath: `/docs`,
footer: ``,
},
plugins: [
`gatsby-plugin-styled-components`,
{
resolve: `@rocketseat/gatsby-theme-docs`,
options: {
basePath: "/docs",
configPath: `src/config`,
docsPath: `src/docs`,
githubUrl: `https://github.com/react-spring/r3f-website`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `React Three Fiber`,
short_name: `React Three Fiber`,
start_url: `/docs`,
background_color: `#ffffff`,
display: `standalone`,
icon: `static/favicon.png`,
},
},
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// trackingId: ``,
},
},
{
resolve: `gatsby-plugin-canonical-urls`,
options: {
siteUrl: `https://react-three-fiber.com`,
},
},
`gatsby-plugin-offline`,
],
};