-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
62 lines (62 loc) · 1.93 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
module.exports = {
siteMetadata: {
title: `Portway`,
description: `Work on a range of content projects with your team, on any device.`,
keywords: `Documents, Notes, Collaborative, Writing, Markdown, API, REST, CMS, Content management system, Developers`,
author: `@portwayapp`,
sponsors: [
{
logo: '/img/sponsors/ror-podcast.jpg',
message: 'Welcome, Ruby on Rails podcast listeners!',
name: 'Ruby on Rails podcast',
showBanner: true,
slug: 'ror',
},
{
logo: '/img/sponsors/remote-tools.png',
message: 'Welcome, Remote Tools fans!',
name: 'Remote Tools',
showBanner: true,
slug: 'remote-tools',
},
{
logo: '/img/sponsors/macstories.svg',
message: 'Welcome, MacStories fans! Check out our <a href="https://docs.portway.app/guides/creating-an-ios-shortcut" target="_blank" rel="noreferrer noopener">iOS shortcut guide</a>.',
name: 'MacStories',
showBanner: true,
slug: 'macstories',
},
],
},
plugins: [
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-sass`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-minify`,
`gatsby-transformer-json`,
{
resolve: '@portway/gatsby-source-portway',
options: {
token: `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MjUsIm9yZ0lkIjoxLCJpYXQiOjE2MTA3Mzg1MjcsImlzcyI6ImJvbmtleWJvbmcifQ.5JPC-k67JVvOPLJKg9r1LQlmHSHkJ8orpfP2gO8zjlg`,
projectId: 44
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `img`,
path: `${__dirname}/src/img`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/content/`,
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
}