DESCRIPTION
Install the integration automatically using the Astro CLI:
pnpm astro add PACKAGE-NAME
npm astro add PACKAGE-NAME
yarn astro add PACKAGE-NAME
Or install it manually:
- Install the required dependencies
pnpm add PACKAGE-NAME
npm install PACKAGE-NAME
yarn add PACKAGE-NAME
- Add the integration to your astro config
+import PACKAGE-NAME from "PACKAGE-NAME";
export default defineConfig({
integrations: [
+ PACKAGE-NAME(),
],
});
This package is structured as a monorepo:
playground
contains code for testing the packagepackage
contains the actual package
Install dependencies using pnpm:
pnpm i --frozen-lockfile
Start the playground:
pnpm playground:dev
You can now edit files in package
. Please note that making changes to those files may require restarting the playground dev server.
MIT Licensed. Made with ❤️ by Adam M..
TODO: