aboutsummaryrefslogtreecommitdiffhomepage
path: root/gatsby-config.js
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2021-04-22 01:39:47 -0400
committerKevin J Hoerr <kjhoerr@protonmail.com>2021-04-22 01:39:47 -0400
commitd4f172ed203e6f3f6d1143f49c304cea8d45170e (patch)
tree2d1d611052df544df9603d2ebd9f17905a90ebea /gatsby-config.js
parent9bfb5ce80ce8b5c2e7821b7ebea28a5f35848135 (diff)
downloadsubmelon.dev-d4f172ed203e6f3f6d1143f49c304cea8d45170e.tar.gz
submelon.dev-d4f172ed203e6f3f6d1143f49c304cea8d45170e.tar.bz2
submelon.dev-d4f172ed203e6f3f6d1143f49c304cea8d45170e.zip
Changes
Diffstat (limited to 'gatsby-config.js')
-rw-r--r--gatsby-config.js13
1 files changed, 11 insertions, 2 deletions
diff --git a/gatsby-config.js b/gatsby-config.js
index 8d57baf..ad3fc6d 100644
--- a/gatsby-config.js
+++ b/gatsby-config.js
@@ -1,15 +1,24 @@
module.exports = {
siteMetadata: {
title: "submelon.tech",
+ description: "The official website of Kevin Hoerr, the developer of websites.",
+ author: "Kevin J Hoerr",
},
plugins: [
+ "gatsby-plugin-typescript",
"gatsby-plugin-styled-components",
"gatsby-plugin-image",
"gatsby-plugin-react-helmet",
{
- resolve: "gatsby-plugin-manifest",
+ resolve: `gatsby-plugin-manifest`,
options: {
- icon: "src/images/icon.png",
+ name: `Kevin J Hoerr`,
+ short_name: `kjhoerr`,
+ start_url: `/`,
+ background_color: `#e1e1e1`,
+ theme_color: `#e1e1e1`,
+ display: `browser`,
+ icon: `src/images/favicon-70x70.png`,
},
},
"gatsby-plugin-mdx",