forked from argoproj/argo-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
34 lines (34 loc) · 1.07 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
module.exports = {
siteMetadata: {
siteUrl: 'https://argoproj.github.io',
},
plugins: [
'gatsby-plugin-react-helmet',
'gatsby-plugin-typescript',
'gatsby-plugin-sass', {
resolve: 'gatsby-plugin-sitemap',
}, {
resolve: 'gatsby-transformer-remark',
options: {
plugins: [{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: process.env.GA_TRACKING_ID,
},
}, {
resolve: 'gatsby-remark-images',
options: {
maxWidth: 590,
},
}, {
resolve: 'gatsby-remark-link-rewrite',
options: {
pattern: /^(?!.*http[s]?:)(.*)[.]md$/,
replace: '$1.html',
},
},'gatsby-remark-copy-images',
`gatsby-remark-autolink-headers`],
},
},
],
}