Skip to content

Commit

Permalink
docs(seo): adding meta tag information for open graph and twitter to …
Browse files Browse the repository at this point in the history
…config
  • Loading branch information
JamieSlome committed Dec 28, 2020
1 parent 1125c3a commit 729921e
Showing 1 changed file with 66 additions and 1 deletion.
67 changes: 66 additions & 1 deletion docs/nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,75 @@ export default {
name: "viewport",
content: "width=device-width, initial-scale=1"
},
{
hid: "name",
name: "name",
content: "polyfig | A simple JavaScript utility library"
},
{
hid: "description",
name: "description",
content: "A simple JavaScript utility library"
content: "polyfig | A simple JavaScript utility library"
},
{
hid: "twitter:title",
name: "twitter:title",
content: "polyfig | A simple JavaScript utility library"
},
{
hid: "twitter:description",
name: "twitter:description",
content: "polyfig | A simple JavaScript utility library"
},
{
hid: "twitter:image",
name: "twitter:image",
content: "/polyfig/icon.png"
},
{
hid: "twitter:image:alt",
name: "twitter:image:alt",
content: "polyfig | A simple JavaScript utility library"
},
{
hid: "twitter:card",
name: "twitter:card",
content: "summary_large_image"
},
{
hid: "twitter:url",
name: "twitter:url",
content: "https://jamieslome.github.io/polyfig/"
},
{
hid: "og:type",
property: "og:type",
content: "website"
},
{
hid: "og:title",
property: "og:title",
content: "polyfig | A simple JavaScript utility library"
},
{
hid: "og:url",
property: "og:url",
content: "https://jamieslome.github.io/polyfig/"
},
{
hid: "og:description",
property: "og:description",
content: "polyfig | A simple JavaScript utility library"
},
{
hid: "og:image",
property: "og:image",
content: "/polyfig/icon.png"
},
{
hid: "og:image:alt",
property: "og:image:alt",
content: "polyfig | A simple JavaScript utility library"
}
],
link: [
Expand Down

0 comments on commit 729921e

Please sign in to comment.