-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathgatsby-config.js
More file actions
35 lines (34 loc) · 857 Bytes
/
gatsby-config.js
File metadata and controls
35 lines (34 loc) · 857 Bytes
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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
siteMetadata: {
title: 'UndergroundJS',
description:
'JavaScript conference hosted in Rocketown in Nashville on August 2nd 2019.',
twitter: 'https://twitter.com/undergroundjs',
instagram: '',
},
__experimentalThemes: ['gatsby-theme-conference'],
plugins: [
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/src/images`,
name: 'images',
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-138176222-1',
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
'gatsby-plugin-offline',
'gatsby-plugin-netlify', // make sure to keep it last in the array
],
};