Home
Softono
nuxt-social-meta

nuxt-social-meta

Open source JavaScript
119
Stars
9
Forks
2
Issues
1
Watchers
4 years
Last Commit

About nuxt-social-meta

# Nuxt social meta Nuxt.js module generate meta-tags for social networks - Facebook, Twitter and LinkedIn (and the rest uses OG tags, such as Discord etc.). ## Install ```sh npm i nuxt-social-meta --save # or, with yarn: yarn add nuxt-social-meta ``` ## Usage Add module to your `nuxt.config.js` ```js module.exports = { modules: [ ...[ "nuxt-social-meta", { url: "Site url", title: "Title", site_name: "Site name", description: "Site description", img: "Link to image in static folder", img_size: { width: "Image width in px", height: "Image height in px" }, locale: "en_US", twitter: "@user", twitter_card: "summary_large_image", theme_color: "#theme-color", }, ], ], }; ```

Platforms

Web Self-hosted

Languages

JavaScript

Links

Nuxt social meta

Nuxt.js module generate meta-tags for social networks - Facebook, Twitter and LinkedIn (and the rest uses OG tags, such as Discord etc.).

Install

npm i nuxt-social-meta --save

# or, with yarn:

yarn add nuxt-social-meta

Usage

Add module to your nuxt.config.js

module.exports = {
  modules: [
    ...[
      "nuxt-social-meta",
      {
        url: "Site url",
        title: "Title",
        site_name: "Site name",
        description: "Site description",
        img: "Link to image in static folder",
        img_size: { width: "Image width in px", height: "Image height in px" },
        locale: "en_US",
        twitter: "@user",
        twitter_card: "summary_large_image",
        theme_color: "#theme-color",
      },
    ],
  ],
};