-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
30 lines (30 loc) · 1.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
module.exports = {
siteMetadata: {
// You can overwrite the following values or add new values and query them
// The following three values are used in the SEO component
// Refer: https://github.com/OpenArchitex/gatsby-themes/blob/main/themes/gatsby-theme-academic-portfolio/gatsby-config.js
title: "Academic Portfolio",
description: "Portfolio theme tailored for profs, grad-students",
author: "OpenArchitex"
},
plugins: [
{
resolve: `@openarchitex/gatsby-theme-academic-portfolio`,
options: {}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `@openarchitex/gatsby-theme-academic-portfolio`,
short_name: `Academic Portfolio`,
description: `Portfolio theme tailored for profs, grad-students`,
start_url: `/`,
background_color: `#f7f0eb`,
theme_color: `#a2466c`,
display: `standalone`,
icon: `src/images/favicon.png`,
},
},
`gatsby-plugin-offline`,
],
}