diff --git a/docs/content/1.getting-started/2.installation.md b/docs/content/1.getting-started/2.installation.md
index 8ddfd756..08d31385 100644
--- a/docs/content/1.getting-started/2.installation.md
+++ b/docs/content/1.getting-started/2.installation.md
@@ -27,7 +27,11 @@ bun add @nuxt/ui@next
::
-2. Register the Nuxt UI module in your `nuxt.config.ts`:
+::warning
+Make sure you have `typescript` installed in your dev dependencies.
+::
+
+2. Register the Nuxt UI module in your `nuxt.config.ts`{lang="ts-type"}:
```ts [nuxt.config.ts]
export default defineNuxtConfig({
@@ -35,7 +39,9 @@ export default defineNuxtConfig({
})
```
-3. Import Tailwind and Nuxt UI in your CSS:
+3. Import Tailwind and Nuxt UI in your `app.vue`{lang="ts-type"} or in your [CSS](https://nuxt.com/docs/getting-started/styling#the-css-property):
+
+::code-group
```vue [app.vue]
```
-::tip
-This is done here in the `