forked from ActiveCampaign/smtp-field-manual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
71 lines (70 loc) · 1.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const searchQueries = require('./src/utils/algolia')
require('dotenv').config()
module.exports = {
siteMetadata: {
title: `SMTP Field Manual`,
description: `A collection of raw SMTP error responses from major email service providers and spam filters.`,
author: `@postmarkapp`,
siteUrl: `https://smtpfieldmanual.com`,
},
plugins: [
`gatsby-plugin-sass`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-react-helmet-canonical-urls`,
options: {
siteUrl: `https://smtpfieldmanual.com`,
},
},
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `SMTP Field Manual`,
short_name: `SMTP Manual`,
description: `A collection of raw SMTP error responses from major email service providers and spam filters.`,
start_url: `/`,
background_color: `#FFCC00`,
theme_color: `#3B377B`,
display: `standalone`,
icon: `src/images/smtpfm-icon.png`,
},
},
'gatsby-transformer-json',
{
resolve: `gatsby-source-filesystem`,
options: {
name: `data`,
path: `${__dirname}/data`,
},
},
{
resolve: `gatsby-plugin-algolia`,
options: {
appId: process.env.GATSBY_ALGOLIA_APP_ID,
apiKey: process.env.ALGOLIA_ADMIN_KEY,
queries: searchQueries,
chunkSize: 10000, // default: 1000
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-507677-43',
},
},
`gatsby-plugin-meta-redirect`,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
}