Socket
Socket
Sign inDemoInstall

astro-seo

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

astro-seo - npm Package Compare versions

Comparing version 0.3.13 to 0.3.14

11

package.json
{
"name": "astro-seo",
"version": "0.3.13",
"version": "0.3.14",
"description": "Makes it easy to add SEO relevant tags to your Astro app.",

@@ -26,8 +26,11 @@ "homepage": "https://github.com/jonasmerlin/astro-seo#readme",

"dev": "astro dev",
"preview": "astro preview"
"preview": "astro preview",
"format": "yarn prettier -w ./src"
},
"devDependencies": {
"astro": "^0.20.3",
"cypress": "^8.3.1"
"astro": "^0.20.12",
"cypress": "^8.3.1",
"prettier": "^2.4.1",
"prettier-plugin-astro": "^0.0.9"
}
}

@@ -17,3 +17,3 @@ ![Astro SEO Logo](https://user-images.githubusercontent.com/5182256/131216951-8f74f425-f775-463d-a11b-0e01ad9fce8d.png)

```jsx
```astro
---

@@ -24,3 +24,3 @@ import { SEO } from 'astro-seo'

<html lang="en">
<head>
<head>
<SEO

@@ -48,3 +48,3 @@ title="A Very Descriptive Title"

nofollow | boolean | Set this to true if you don't want search engines to follow links on your page. Since this is an SEO component, this gets set to `false` by default. This way, following links is strictly opt-out.
openGraph.basic.title | string | Set the title Open Graph should use. __In most situations, this should be _different_ from the value of the `description` prop.__ See [this tweet](https://twitter.com/jon_neal/status/1428721238071988237) to gain an understanding of the difference between the two. If you define this, you must define the other 3 OG basic properties as well: `type`, `image` and `url`. ([Learn more.](https://ogp.me/#metadata))
openGraph.basic.title | string | Set the title Open Graph should use. __In most situations, this should be _different_ from the value of the `title` prop.__ See [this tweet](https://twitter.com/jon_neal/status/1428721238071988237) to gain an understanding of the difference between the two. If you define this, you must define the other 3 OG basic properties as well: `type`, `image` and `url`. ([Learn more.](https://ogp.me/#metadata))
openGraph.basic.type | string | Set the [type](https://ogp.me/#types) Open Graph should use. If you define this, you must define the other 3 OG basic properties as well: `title`, `image` and `url`. ([Learn more.](https://ogp.me/#metadata))

@@ -51,0 +51,0 @@ openGraph.basic.image | string | URL of the image that should be used in social media previews. If you define this, you must define the other 3 OG basic properties as well: `title`, `type` and `url`. ([Learn more.](https://ogp.me/#metadata))

@@ -1,1 +0,1 @@

export { default as SEO } from './SEO.astro';
export { default as SEO } from "./SEO.astro";

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc