-
sorry to ask this kind of stupid question 😅, i spend almost a hour to install this integration but can't able to install. my command to install
output
please help someone. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hello @aianshume, I am trying Astro and had the exact doubt. I was able to install it with: You can check it here: NPM docs To be honest, I have not tried using it yet but hope it works. Cheers! |
Beta Was this translation helpful? Give feedback.
-
Hi, you can install the package with To use it simply import the SEO component in your layout ---
import { SEO } from "astro-seo";
---
<html>
<head>
<SEO
title="A Very Descriptive Title"
description="A heavily optimized description full of well-researched keywords."
/>
</head>
<body>
...
</body>
</html> |
Beta Was this translation helpful? Give feedback.
Hi, you can install the package with
yarn add astro-seo
, in fact it is not really an integrationTo use it simply import the SEO component in your layout