---
title: Installation
description: 'Learn how to install and configure Nuxt UI v3 in your application.'
---
## Setup
1. Install the Nuxt UI v3 alpha package:
::code-group
```bash [pnpm]
pnpm add @nuxt/ui@next
```
```bash [yarn]
yarn add @nuxt/ui@next
```
```bash [npm]
npm install @nuxt/ui@next
```
```bash [bun]
bun add @nuxt/ui@next
```
::
2. Register the Nuxt UI module in your `nuxt.config.ts`:
```ts [nuxt.config.ts]
export default defineNuxtConfig({
modules: ['@nuxt/ui']
})
```
3. Import Tailwind and Nuxt UI in your CSS:
```vue [app.vue]
```
::tip
This is done here in the `