-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.ts
39 lines (37 loc) · 997 Bytes
/
gatsby-config.ts
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
import type { GatsbyConfig } from 'gatsby'
import {
gatsbyPluginFeed,
gatsbyPluginReactSvg,
gatsbyPluginSitemap,
gatsbySourceAirtable,
gatsbySourceFilesystem,
gatsbyTransformerRemark,
sentryGatsby,
} from './config/gatsby'
const config: GatsbyConfig = {
graphqlTypegen: true,
jsxRuntime: 'automatic',
siteMetadata: {
siteUrl: 'https://gettreadtalks.com',
title: 'TREAD Talks',
description:
'Exercise your inner man with Christ centered sermons to elevate your spiritual heartbeat while working out your physical one.',
tagline: 'Exercise your inner man.',
},
plugins: [
'gatsby-plugin-image',
'gatsby-plugin-netlify',
'gatsby-plugin-postcss',
'gatsby-plugin-robots-txt',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
gatsbyPluginFeed,
gatsbyPluginReactSvg,
gatsbyPluginSitemap,
gatsbySourceAirtable,
gatsbySourceFilesystem,
gatsbyTransformerRemark,
sentryGatsby,
],
}
export default config