Troubleshooting

How to troubleshoot common issues with Unlumen UI.

Open in

Verify your versions

DependencyMinimum recommended version
Motion≥ 12.23.0
React≥ 19
Tailwind CSS≥ 4.1.0

Make sure your environment meets or exceeds these versions to ensure Unlumen UI remains compatible and stable.

Documentation display issues

Certain browser extensions can interfere with how the documentation is rendered. Common culprits include:

If problems persist after disabling extensions, clear your browser cache and refresh the page.

The CLI installation does not respect aliases

In some projects, components may not install in the desired location configured via the aliases in your components.json file. This is a known limitation of the shadcn CLI — it cannot use a target path with aliases.

An issue has been filed on shadcn/ui and it is on their roadmap.

For now, we recommend using the manual installation method.

Authentication failed for Pro CLI installs

If you try to install a Pro component and see an authentication error in the terminal, check the following:

  1. Your project .env.local includes a valid key:
UNLUMEN_LICENSE_KEY=0UNLU_...
  1. Your components.json registry includes one of these valid auth formats:
{
  "registries": {
    "@unlumen-ui": {
      "url": "https://ui.unlumen.com/r/{name}.json",
      "headers": {
        "Authorization": "Bearer ${UNLUMEN_LICENSE_KEY}"
      }
    }
  }
}

Or, if your project currently has a simple string registry entry:

{
  "registries": {
    "@unlumen-ui": "https://ui.unlumen.com/r/{name}.json?token=${UNLUMEN_LICENSE_KEY}"
  }
}
  1. You restarted the terminal after editing environment variables.

  2. You are using your Polar license key from your purchase email.

Status codes you may see:

  • 401 Unauthorized: missing or invalid key
  • 403 Forbidden: key is valid but not in granted state
  • 429 Too Many Requests: too many attempts in a short window

Other issues

If you encounter any other problem, don't hesitate to open an issue here.

Built by Léo from Unlumen :3

Last updated: 4/29/2026