From e5511c59e3755c4ba7ff50ca5edb08714923cbcf Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Thu, 16 Nov 2023 14:37:04 +0100 Subject: [PATCH] readme --- packages/astro/README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/packages/astro/README.md b/packages/astro/README.md index e69de29b..09674906 100644 --- a/packages/astro/README.md +++ b/packages/astro/README.md @@ -0,0 +1,20 @@ +# Spotlight for Astro + +This is package is specifically built to add Spotlight to your Astro application with one command. + +## Installation + +```js +npx astro add @spotlightjs/astro +``` + +## Usage + +```js +// astro.config.mjs +import spotlight from '@spotlightjs/astro'; + +export default defineConfig({ + integrations: [spotlight()], +}); +```