astro-og
v0.3.1
Published
Astro dev toolbar app that previews your page on social platforms and shows its open graph data.
Maintainers
Readme
Astro Open Graph
Astro dev toolbar app that shows a preview of how the page will look when shared on various social media platforms and helps you inspect the page's open graph properties. This project is heavily inspired by Vercel Toolbar.
Installation
npx astro add astro-ogManual Installation
First, install the astro-og package:
npm install -D astro-ogThen, add the astro-og integration to your Astro config:
import { defineConfig } from "astro/config";
import og from "astro-og";
export default defineConfig({
integrations: [og()],
});