-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgatsby-config.js
113 lines (112 loc) · 2.59 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* eslint-env node */
/* eslint-disable camelcase */
const path = require('path');
module.exports = {
pathPrefix: '/',
siteMetadata: {
title: 'Enact'
},
plugins: [
{
resolve: `gatsby-plugin-google-gtag`,
options: {
// You can add multiple tracking ids and a pageview event will be fired for all of them.
trackingIds: [
"G-ZNPW7ST2D8" // Google Analytics / GA
],
// This object is used for configuration specific to this plugin
pluginConfig: {
// Puts tracking script in the head instead of the body
head: false,
// Setting this parameter is also optional
respectDNT: true
}
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'pages',
path: path.join(__dirname, 'src', 'pages')
}
},
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 690
}
},
{
resolve: 'gatsby-remark-embed-youtube',
options: {
width: 800,
height: 400
}
},
{
resolve: 'gatsby-remark-responsive-iframe'
},
'gatsby-remark-prismjs',
'gatsby-remark-copy-linked-files',
'gatsby-remark-smartypants',
'gatsby-remark-autolink-headers'
]
}
},
{
resolve: 'gatsby-plugin-typography',
options: {
pathToConfigModule: 'src/utils/typography.js'
}
},
{
resolve: `gatsby-plugin-less`,
options: {
cssLoaderOptions: {
modules: {
namedExport: false
}
}
}
},
{
resolve: `gatsby-plugin-postcss`,
options: {
cssLoaderOptions: {
modules: {
namedExport: false
}
}
}
},
'gatsby-plugin-image',
'gatsby-plugin-sharp',
'gatsby-plugin-catch-links',
'gatsby-transformer-javascript-frontmatter',
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'EnactJS',
short_name: 'EnactJS',
start_url: '/',
background_color: '#fff',
theme_color: '#5582ff',
// Enables "Add to Homescreen" prompt and disables browser UI (including back button)
// see https://developers.google.com/web/fundamentals/web-app-manifest/#display
display: 'standalone',
icon: 'src/assets/enact.svg', // This path is relative to the root of the site.
// An optional attribute which provides support for CORS check.
// If you do not provide a crossOrigin option, it will skip CORS for manifest.
// Any invalid keyword or empty string defaults to `anonymous`
crossOrigin: 'use-credentials',
include_favicon: false
}
},
'gatsby-plugin-offline'
]
};