Set up HextaUI for local development
masterTo start developing locally, ensure corepack is enabled, install dependencies using pnpm, and run the development server. If port 3000 is already in use by another application, you can run the dev server on port 3001.
Note: Running pnpm dev automatically builds the local shadcn registry. The resulting files in public/r/*.json are build artifacts and should not be committed to version control.
corepack enable
pnpm install --frozen-lockfile
pnpm dev -- -p 3001