-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
42 lines (42 loc) · 1017 Bytes
/
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 = {
siteMetadata: {
title: `Neaps tide library`,
description: `Javascript tide harmonics and predictions.`,
harmonicsServer: `https://enigmatic-sea-16360.herokuapp.com/api/v1/`,
harmonicsSocket: 'wss://enigmatic-sea-16360.herokuapp.com/'
},
plugins: [
{
resolve: `gatsby-source-noaa-tides`,
options: {
stations: ['9413450', '9411340', '2695535', '8410140']
}
},
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/style/typography`
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `tidePredictorReadme`,
path: `${__dirname}/node_modules/@neaps/tide-predictor/README.md`
}
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-prismjs`,
options: {
inlineCodeMarker: null
}
}
]
}
}
]
}