Skip to content

Commit

Permalink
Include image URL and keywords in meta tags
Browse files Browse the repository at this point in the history
  • Loading branch information
AkashBhave committed Dec 16, 2021
1 parent d920a69 commit 13e9d8e
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 299 deletions.
4 changes: 0 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions web/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ require("dotenv").config();
module.exports = {
siteMetadata: {
title: `Akash Bhave`,
description: `Personal website of Akash Bhave`,
author: `Akash Bhave`,
description: `The personal website of Akash Bhave.`,
author: `Akash Bhave`
},
plugins: [
`gatsby-plugin-react-helmet`,
Expand All @@ -18,20 +18,20 @@ module.exports = {
background_color: `rgba(252, 255, 250, 1)`,
theme_color: `rgba(168, 218, 220, 1)`,
display: `minimal-ui`,
icon: `src/images/logo.svg`,
},
icon: `src/images/logo.svg`
}
},
`gatsby-plugin-postcss`,
{
resolve: "gatsby-source-sanity",
options: {
projectId: process.env.GATSBY_SANITY_ID,
dataset: process.env.GATSBY_SANITY_DATASET,
token: process.env.SANITY_TOKEN,
},
token: process.env.SANITY_TOKEN
}
},
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-offline`,
],
`gatsby-plugin-offline`
]
};
Loading

0 comments on commit 13e9d8e

Please sign in to comment.