Skip to content

Getting Started

Installing dependencies…
npm install --save-dev astropix

Usage

Astropix is a Integration for Astro projects. To use it, you need to add it in your project config:

astro.config.mjs
import { defineConfig } from 'astro/config';
import astropix from "astropix";
export default defineConfig({
integrations: [
astropix()
]
})