@nuxtjs/meta
Advanced tools
Comparing version 1.2.0 to 1.2.1
{ | ||
"name": "@nuxtjs/meta", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
# Meta | ||
Easily adds common meta tags into your project with zero-config needed. | ||
[](https://npmjs.com/package/@nuxtjs/meta) | ||
[](https://npmjs.com/package/@nuxtjs/meta) | ||
> Easily adds common meta tags into your project with zero-config needed. | ||
This module is compatible with [manifest](../manifest) module. | ||
## Setup | ||
- Add `@nuxtjs/meta` dependency using yarn or npm to your project | ||
- Add `@nuxtjs/meta` to `modules` section of `nuxt.config.js` | ||
```js | ||
{ | ||
modules: [ | ||
'@nuxtjs/meta', | ||
] | ||
} | ||
```` | ||
- You can optionally override meta using `manifest` section of `nuxt.config.js` | ||
```js | ||
{ | ||
manifest: { | ||
// ... | ||
} | ||
} | ||
``` | ||
## What's included ? | ||
@@ -20,10 +42,1 @@ Meta / Link | Customize With | Default value | ||
`og:description` | `ogDescription` | same as options.description | ||
## Setup | ||
- Add `@nuxtjs/meta` dependency using yarn or npm to your project | ||
- Add `@nuxtjs/meta` module to `nuxt.config.js`: | ||
```js | ||
modules: [ | ||
'@nuxtjs/meta' | ||
] | ||
```` |
7122
5
42