You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Step 0: Skip everthing below, just use the cli 🚀
7
+
## Skip the manual steps and just use the cli 🚀
10
8
11
9
Simply run the following command:
12
10
13
11
```zsh
14
-
npx qwik-ui init
12
+
pnpm dlx qwik-ui init
13
+
```
14
+
15
+
(or "**npx qwik-ui init**" if you prefer npm)
16
+
17
+
This will help you install tailwind, create a `qwik-ui.config.json` file and modify your root/global css and tailwind config files with the necessary Qwik UI design system variables and values ([see below](#manual-installation))
18
+
19
+
### Generating components using the CLI
20
+
21
+
When you want to add a component you can run:
22
+
23
+
```zsh
24
+
pnpm qwik-ui add
25
+
```
26
+
27
+
Or if you know a specific component you want to add, let's say "`input`", you can run:
0 commit comments