Installation
Run any of the following commands to add fulldev-ui to your dependencies.
npm i fulldev-ui
# or
pnpm i fulldev-ui
# or
yarn add fulldev-ui
# or
bun add fulldev-ui
Add the integration to your astro.config.ts
file.
// astro.config.ts
import { defineConfig } from 'astro/config'
import fulldev from 'fulldev-ui/integration'
export default defineConfig({
integrations: [fulldev()],
})