gridsome-plugin-ogp

0.0.14 • Public • Published

gridsome-plugin-ogp

Adding OGP meta tags to every page can be a pain. This plugin aims to alleviate that pain. Add the plugin to your project like so.

npm i gridsome-plugin-ogp

In gridsome.config.js...

plugins: [
  {
    use: 'gridsome-plugin-ogp'
  }
]

Then, in any page or template component you have, adjust the metaInfo hook like so.

metaInfo() {
  return {
    ...this.$ogp({
      title: 'your-title',
      description: 'your-description',
      image: 'your-image-url'
      appId: 'someFacebookAppID' // Facebook-only
    })
  }
}

This will then populate the meta tags needed for Facebook, Google, and Twitter. It will also set the standard page title and description at the same time.

Package Sidebar

Install

npm i gridsome-plugin-ogp

Weekly Downloads

0

Version

0.0.14

License

MIT

Unpacked Size

2.9 kB

Total Files

4

Last publish

Collaborators

  • brandonpittman