gridsome/gridsome

Plugin request: Add some general SEO optimizations

Open

#331 opened on Mar 29, 2019

View on GitHub
 (11 comments) (5 reactions) (0 assignees)JavaScript (8,519 stars) (495 forks)batch import
help wanted

Description

Summary

Some meta tags are pretty typical nowadays for SEO optimization and could easily be auto-generated.

Basic example

export default {
  metaInfo: { title: "My super SEO optimized page" }
}

could automatically add meta tags for twitter:title, og:title, etc. Same for "description".

Another example would be the canonical URL: <link rel="canonical" href="currentURL" /> which would be easy to generate using the current route.

Motivation

SEO optimization is important for many and at least useful for almost everyone else. It is also not hurting anyone to have it.

Contributor guide