UNPKG

accessible-astro-components

Version:

A comprehensive set of accessible, easy-to-use UI components for Astro websites, built with WCAG compliance and inclusive design principles.

13 lines (11 loc) 296 B
import { defineConfig } from 'astro/config' import astrobook from 'astrobook' export default defineConfig({ integrations: [ astrobook({ directory: 'src/components', css: ['./src/styles/astrobook.css', './src/styles/index.css'], title: 'Accessible Astro', }), ], })