-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
71 lines (69 loc) · 2.13 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 path = require('path')
const THINSP = '\u2009'
const MDASH = '\u2014'
module.exports = {
siteMetadata: {
titlePrefix: `Scampersand${THINSP}${MDASH}${THINSP}`,
defaultTitle: `Web & Mobile Applications, Ann Arbor`,
description: `We work with startups and organizations to build software that makes a difference.`,
twitter: `scampersandco`,
// prettier-ignore
links: [
{name: '18f', href: 'https://18f.gsa.gov'},
{name: 'abc-clio', href: 'https://www.abc-clio.com'},
{name: 'ada', href: 'https://www.ada.org/'},
{name: 'appsembler', href: 'https://appsembler.com'},
{name: 'codie', href: 'https://www.siia.net/codie/'},
{name: 'einstein', href: 'https://einsteinpapers.press.princeton.edu'},
{name: 'figures', href: 'https://appsembler.com/blog/figures/'},
{name: 'gw', href: 'https://www.g-w.com'},
{name: 'open-edx', href: 'https://open.edx.org'},
{name: 'princeton-university-press', href: 'https://press.princeton.edu'},
{name: 'ripul', href: 'https://ripul.org'},
{name: 'tizra', href: 'https://www.tizra.com'},
{name: 'twitter', href: 'https://twitter.com/scampersandco'},
{name: 'github', href: 'https://github.com/scampersand'},
{name: 'linkedin', href: 'https://www.linkedin.com/company/scampersand'},
]
},
plugins: [
{
resolve: `gatsby-plugin-root-import`,
options: {
'~': path.join(__dirname, `src`),
},
},
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-plugin-adobe-fonts`,
options: {
id: `don3dwd`,
},
},
`gatsby-plugin-emotion`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Scampersand`,
short_name: `Scampersand`,
start_url: `/`,
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-77612407-1',
},
},
`gatsby-plugin-lodash`,
],
}