Skip to content

Fix #1149 #1150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions apps/www/src/content/docs/installation/astro.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ Add the following code to the `tsconfig.json` file to resolve paths:
}
```

### Install Reka UI

```bash
npm install reka-ui
```

### Run the CLI

Run the `shadcn` init command to setup your project:
Expand Down
2 changes: 1 addition & 1 deletion apps/www/src/content/docs/installation/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Components are styled using Tailwind CSS. You need to install Tailwind CSS in yo
Add the following dependencies to your project:

```bash
npm install class-variance-authority clsx tailwind-merge lucide-vue-next tw-animate-css
npm install class-variance-authority clsx tailwind-merge lucide-vue-next tw-animate-css reka-ui
```

### Configure path aliases
Expand Down
11 changes: 9 additions & 2 deletions apps/www/src/content/docs/installation/nuxt.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,17 @@ npm install -D typescript

</Callout>

### Add Tailwind CSS
### Add Tailwind CSS and animations

```bash
npm install tailwindcss @tailwindcss/vite
npm install tailwindcss @tailwindcss/vite tw-animate-css
```

Replace everything in `assets/css/tailwind.css` with the following:

```css title="assets/css/tailwind.css"
@import "tailwindcss";
@import "tw-animate-css";
```

Update `nuxt.config.ts` with the following:
Expand Down Expand Up @@ -219,6 +220,12 @@ If you are initiating a new project, you need to run the command so that Nuxt ge
npx nuxi prepare
```

### Install Reka UI

```bash
npm install reka-ui
```

### Run the CLI

Run the `shadcn-vue` init command to setup your project:
Expand Down
11 changes: 9 additions & 2 deletions apps/www/src/content/docs/installation/vite.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,17 @@ Start by creating a new Vue project using `vite`:
npm create vite@latest my-vue-app -- --template vue-ts
```

### Add Tailwind CSS
### Add Tailwind CSS and animations

```bash
npm install tailwindcss @tailwindcss/vite
npm install tailwindcss @tailwindcss/vite tw-animate-css
```

Replace everything in `src/index.css` with the following:

```css title="src/index.css"
@import "tailwindcss";
@import "tw-animate-css";
```

### Edit tsconfig.json file
Expand Down Expand Up @@ -101,6 +102,12 @@ export default defineConfig({
})
```

### Install Reka UI

```bash
npm install reka-ui
```

### Run the CLI

Run the `shadcn-vue` init command to setup your project:
Expand Down