CLI

Add components, blocks, and pages from the Accelerator registry directly into your project.

add

Run npx acc-nuxt add followed by the name of the template you want to install. The file is copied straight into your project — no configuration needed.

npx acc-nuxt add Button

Pass multiple names to install several templates at once:

npx acc-nuxt add Button Input Label

Or install all templates of a specific type:

npx acc-nuxt add --all --type component

list

Prints every template available in the registry, grouped by type. Use this to discover what you can add.

npx acc-nuxt list

options

--all:boolean— optional
Install every template in the registry at once.
--type:component | block | page— optional
Limit --all to a specific template type.
--force:boolean— optional
Overwrite files that already exist. Without this flag, existing files are skipped.
--dry-run:boolean— optional
Preview what would be installed without writing any files.
--json:boolean— optional
Emit machine-readable JSON output.
--help:boolean— optional
Print usage information.

On This Page