Totaal

€10,00

Verzendkosten worden berekend bij het afrekenen.

Installation

How to install dependencies and setup the integration.

Add to existing project

If you don’t have an existing project, you can create a new one using the starter template.

Automatic setup

Run the following command to automatically install the dependencies and add the integration.

npx astro add fulldev-ui

Manual setup

Run the following command to add fulldev-ui to your dependencies.

npm i 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()],
})

Create new project

Run the following command to setup a new project from the starter template.

npx astro create --template fulldev-ui