-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
84 lines (84 loc) · 1.96 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
72
73
74
75
76
77
78
79
80
81
82
83
84
module.exports = {
siteMetadata: {
title: `Open Varsity`,
name: `Varsity Publications Inc`,
siteUrl: `https://open-varsity.netlify.app/`,
description: `An engineering blog by the Varsity Publications team, detailing how a University Newspaper is build and maintained.`,
hero: {
heading: `Welcome to Open Varsity, An engineering blog.`,
maxWidth: 652,
},
footerLinks: [
{
name: "About Open Varsity",
url: "/What-is-Open-Varsity",
external: false,
},
// {
// name: "Stats for Nerds",
// url: "/stats",
// external: false,
// },
{
name: "Varsity Status",
url: "https://status.thevarsity.ca/",
external: true,
},
],
social: [
{
name: `twitter`,
url: `https://twitter.com/TheVarsity`,
},
{
name: `github`,
url: `https://github.com/TheVarsity`,
},
{
name: `linkedin`,
url: `https://www.linkedin.com/company/varsity-publications-inc./`,
},
{
name: `varsity`,
url: `https://thevarsity.ca/`,
},
],
},
plugins: [
{
resolve: "@narative/gatsby-theme-novela",
options: {
contentPosts: "content/posts",
contentAuthors: "content/authors",
basePath: "/",
authorsPage: true,
sources: {
local: true,
// contentful: true,
},
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Open Varsity`,
short_name: `Open Varsity`,
start_url: `/`,
background_color: `#fff`,
theme_color: `#fff`,
display: `standalone`,
icon: `src/assets/varsityLogo.png`,
},
},
{
resolve: `gatsby-plugin-netlify-cms`,
options: {},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-173183822-1",
},
},
],
};