-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
45 lines (43 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
// Give gatsby access to env keys
// eslint-disable-next-line @typescript-eslint/no-var-requires
const dotenv = require('dotenv');
dotenv.config({
path: '.env',
});
module.exports = {
siteMetadata: {
title: 'TMAC',
siteUrl: 'https://www.texasmusicadmin.com',
description: 'Website for the Texas Music Administrators Conference',
},
plugins: [
'gatsby-theme-material-ui',
'gatsby-plugin-styled-components',
{
resolve: 'gatsby-source-contentful',
options: {
spaceId: process.env.GATSBY_CONTENTFUL_SPACE_ID,
accessToken: process.env.GATSBY_CONTENTFUL_ACCESS_TOKEN,
},
},
{
resolve: 'gatsby-plugin-typography',
options: {
pathToConfigModule: 'src/utils/typography',
},
},
{
resolve: 'gatsby-plugin-canonical-urls',
options: {
siteUrl: 'https://www.texasmusicadmin.com',
},
},
'gatsby-plugin-react-helmet',
'gatsby-plugin-typescript',
'gatsby-plugin-image',
'gatsby-plugin-sharp',
{
resolve: '@sentry/gatsby',
},
],
};