-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
53 lines (48 loc) · 1.06 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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
/* Your site config here */
plugins: [
/**
* gatsby-plugin-sass
*
* @see https://www.gatsbyjs.org/docs/sass/
*/
'gatsby-plugin-sass',
/**
* gatsby-source-kontent
*
* @see https://github.com/Kentico/kontent-gatsby-packages/tree/master/packages/gatsby-source-kontent#readme
* @see https://www.gatsbyjs.org/packages/@kentico/gatsby-source-kontent/#examples-of-usage
*/
{
resolve: `@kentico/gatsby-source-kontent`,
options: {
projectId: `04d0736e-2df0-0078-c8f1-1f5335f3bedf`,
languageCodenames: [
'default',
],
},
},
/**
* gatsby-plugin-react-helmet
*
* @see https://www.gatsbyjs.org/docs/add-page-metadata/
*/
'gatsby-plugin-react-helmet',
/**
* gatsby-plugin-html-attributes
*
* @see https://www.gatsbyjs.org/packages/gatsby-plugin-html-attributes/
*/
{
resolve: 'gatsby-plugin-html-attributes',
options: {
lang: 'en'
}
}
],
}