generated from OpenArchitex/gatsby-starter-minimal-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
30 lines (30 loc) · 1.14 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-minimal-portfolio/gatsby-config.js
title: "Minimal Portfolio",
description: "Minimal portfolio with About, Projects and Contact sections",
author: "OpenArchitex"
},
plugins: [
{
resolve: `@openarchitex/gatsby-theme-minimal-portfolio`,
options: {}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `@openarchitex/gatsby-theme-minimal-portfolio`,
short_name: `Minimal Portfolio`,
description: `Minimal portfolio with About, Projects and Contact sections`,
start_url: `/`,
background_color: `#f7f0eb`,
theme_color: `#a2466c`,
display: `standalone`,
icon: `src/images/favicon.png`,
},
},
`gatsby-plugin-offline`,
],
}