-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
40 lines (40 loc) · 1.05 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
module.exports = {
siteMetadata: {
siteUrl: 'https://aerotrikeaviation.com',
title: 'Aerotrike Aviation',
description: 'Ultralight flight training at its best.',
},
plugins: [
'gatsby-plugin-sitemap', {
resolve: 'gatsby-plugin-robots-txt',
options: {
host: 'https://aerotrikeaviation.com',
sitemap: 'https://aerotrikeaviation.com/sitemap.xml',
policy: [{
userAgent: '*',
allow: '/',
}],
},
}, 'gatsby-plugin-eslint',
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: `${__dirname}/src/images`,
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp', {
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-87415138-2',
// Puts tracking script in the head instead of the body
head: false,
// Anonymizes users and respects do-not-track
anonymize: true,
respectDNT: true,
},
},
],
};