On this page
App requirements
Before you begin, make sure your project meets these requirements:
Automatic installation
Initialize shadcn CLI
Start by setting up the shadcn CLI in your project:
npm
pnpm
yarn
bun
npx shadcn@latest init --no-base-styleConfigure your registry
Choose or create a style, then update your components.json file to use the selected style.
{
"style": "minimalist", // or "mehdibha/minimalist"
"registries": {
"@dotui": "https://dotui.org/r/{style}/{name}"
}
}Init your style
npm
pnpm
yarn
bun
npx shadcn@latest add @dotui/baseAdd components
You can now add components to your project.
npm
pnpm
yarn
bun
npx shadcn@latest add @dotui/buttonTo add all the components at once, you can use the @dotui/all.
npm
pnpm
yarn
bun
npx shadcn@latest add @dotui/allYou're done!
Last updated on 6/16/2026