aboutsummaryrefslogtreecommitdiffhomepage
path: root/gatsby-config.js
diff options
context:
space:
mode:
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",