Getting Started
npm install --save-dev astropixpnpm add --save-dev astropix
# If using workspacespnpm add --save-dev -w astropixbun install --dev astropixyarn add --dev astropixyarn add --dev astropix
# If using workspacesyarn add --dev -W astropixUsage
Astropix is a Integration for Astro projects. To use it, you need to add it in your project config:
import { defineConfig } from 'astro/config';import astropix from "astropix";
export default defineConfig({ integrations: [ astropix() ]})