-
Notifications
You must be signed in to change notification settings - Fork 5
/
gatsby-config.js
42 lines (42 loc) · 1.16 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
module.exports = {
proxy: {
prefix: '/api',
url: 'http://localhost:8000',
},
siteMetadata: {
title: 'neuromatch',
description: 'Neuromatch is a 501c3 not-for-profit organization in the United States. We are an online community of computational neuroscientists whose mission is to foster inclusive global interactions for learning, mentorship, networking, and professional development.',
siteUrl: 'https://neuromatch.io',
image: 'https://neuromatch.io/neuromatch-og-img.png',
logo: 'https://neuromatch.io/svgs/logos/Logo_mark_Bl.svg',
type: 'website',
},
plugins: [
{
resolve: 'gatsby-plugin-typography',
options: {
pathToConfigModule: 'src/utils/typography',
},
},
{
resolve: 'gatsby-plugin-styled-components',
options: {
// Add any options here
},
},
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-153833046-1',
exclude: ['/*.png', '/*.ico', '/static/**'],
},
},
{
resolve: 'gatsby-plugin-anchor-links',
options: {
offset: -75,
},
},
],
};