Installation
You can install fulldev-ui using Astro’s integration setup, or install it manually.
Automatic Integration Setup
Run any of the following commands to add the fulldev-ui integration automatically.
npx astro add fulldev-ui
# or
pnpm astro add fulldev-ui
# or
yarn astro add fulldev-ui
# or
bunx astro add fulldev-ui
Type y
at the prompts for Astro to install dependencies and add the integration.
Manual 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:
- Add
import fulldev from 'fulldev-ui/integration'
to the list of imports. - Add
fulldev({})
to the integrations list.
// astro.config.ts
import { defineConfig } from 'astro/config'
import fulldev from 'fulldev-ui/integration'
export default defineConfig({
integrations: [fulldev({})],
})