forked from chromaui/learnstorybook.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
41 lines (41 loc) · 1.09 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
module.exports = {
siteMetadata: {
title: 'Storybook Tutorial',
description:
'Learn Storybook the UI component development tool for React, Vue, and Angular. This tutorial teaches you Storybook as you build a UI from scratch.',
permalink: 'https://learnstorybook.com',
toc: [
'/get-started/',
'/simple-component/',
'/composite-component/',
'/data/',
'/screen/',
'/test/',
'/deploy/',
'/conclusion/',
'/contribute/',
],
siteUrl: 'https://learnstorybook.com',
githubUrl: 'https://github.com/hichroma/learnstorybook.com',
codeGithubUrl: 'https://github.com/hichroma/learnstorybook-code',
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/content/`,
},
},
`gatsby-transformer-remark`,
`gatsby-plugin-styled-components`,
`gatsby-plugin-sitemap`,
{
resolve: 'gatsby-plugin-segment',
options: {
writeKey: 'JXEYLKE1T9ptsDlNqeNIMdoOy1Ept8CB',
},
},
],
};