Nuxt UI Pro v1.0 is out with 50+ Vue components.

Reporting Bugs

One of the most valuable roles in open source is taking the time to report bugs helpfully.

Try as we might, we will never completely eliminate bugs.

Even if you can't fix the underlying code, reporting a bug well can enable someone else with a bit more familiarity with the codebase to spot a pattern or make a quick fix.

Here are a few key steps.

Is It Really a Bug?

Consider if you're looking to get help with something, or whether you think there's a bug with Nuxt itself. If it's the former, we'd love to help you - but the best way to do that is through asking for help rather than reporting a bug.

Search the Issues

Search through the open issues and discussions first. If you find anything that seems like the same bug, it's much better to comment on an existing thread than create a duplicate.

Create a Minimal Reproduction

It's important to be able to reproduce the bug reliably - in a minimal way and apart from the rest of your project. This narrows down what could be causing the issue and makes it possible for someone not only to find the cause, but also to test a potential solution.

Start with the Nuxt 3 or Nuxt Bridge sandbox and add the minimum amount of code necessary to reproduce the bug you're experiencing.

If your issue concerns Vue 3 or Vite, please try to reproduce it first with the Vue 3 SSR starter.

Nuxt 3:

Nuxt 3 on StackBlitz

Nuxt 3 on CodeSandbox

Nuxt Bridge:

Nuxt Bridge on CodeSandbox

Vue 3:

Vue 3 SSR on StackBlitz

Vue 3 SSR on CodeSandbox

Vue 3 SSR Template on GitHub

Once you've reproduced the issue, remove as much code from your reproduction as you can (while still recreating the bug). The time spent making the reproduction as minimal as possible will make a huge difference to whoever sets out to fix the issue.

Figure Out What the Cause Might Be

With a Nuxt project, there are lots of moving pieces - from Nuxt modules to other JavaScript libraries. Try to report the bug at the most relevant and specific place. That will likely be the Nuxt module causing an issue, or the upstream library that Nuxt is depending on.