Docs Components Blocks Showcase

Winkelwagen

Installation

You can add fulldev-ui to your project, or use the starter template.

Add to existing project

Automatic setup

Use the astro add command to automatically install the dependencies and add the integration.

npx astro add fulldev-ui

Manual installation

Install fulldev-ui with your favorite package manager.

pnpm i fulldev-ui
# or
bun i fulldev-ui
# or
yarn add fulldev-ui
# or
npm i fulldev-ui

Then setup the integration in your astro.config.ts file.

import { defineConfig } from 'astro/config'
import fulldev from 'fulldev-ui/integration'

export default defineConfig({
  integrations: [fulldev()],
})

Using the starter template

The easiest way to get started is to use the starter template.

pnpm create astro@latest -- --template fulldotdev/starter
On this page
Add to existing project Automatic setup Manual installation Using the starter template