Skip to content

Commit 73bdf53

Browse files
committed
docs: expand analyze command documentation with custom URL feature
1 parent 600c609 commit 73bdf53

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

apps/docs/src/pages/guide/tooling/vuetify-cli.md

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -283,11 +283,31 @@ bunx @vuetify/cli analyze --reporter json
283283

284284
:::
285285

286-
The analyzer detects imports of:
286+
The analyzer scans your project and detects all imports from `@vuetify/v0`:
287287

288-
- Components (`VBtn`, `VCard`, etc.)
289-
- Composables (`useDisplay`, `useTheme`, etc.)
290-
- Types and utilities
288+
- **Components**`VBtn`, `VCard`, `VDataTable`, etc.
289+
- **Composables**`useDisplay`, `useTheme`, `useFilter`, etc.
290+
- **Plugins**`createVuetify`, `createIconsPlugin`, etc.
291+
- **Utilities and constants**
292+
293+
#### Custom Documentation URL
294+
295+
After analyzing your project, the CLI generates a **personalized documentation URL**:
296+
297+
```
298+
https://0.vuetifyjs.com/?features=VBtn,VCard,useDisplay,...
299+
```
300+
301+
This URL filters the v0 documentation to show **only the features you're actually using**, giving you a focused, clutter-free reference tailored to your project. Share this URL with your team to onboard developers faster.
302+
303+
#### Migration Planning
304+
305+
The analyze command is invaluable for migration planning:
306+
307+
1. Run `vuetify analyze` on your existing Vuetify 3 project
308+
2. Review which components and composables you're using
309+
3. Check the generated URL to see v0 equivalents and migration paths
310+
4. Use `--reporter json` to integrate with CI/CD or custom tooling
291311

292312
> [!ASKAI] How can I use the analyze command to plan a Vuetify migration?
293313

0 commit comments

Comments
 (0)