How to run the Nuxt UI 3 playground?
I wanted to play with the Nuxt UI 3 playground, so I ran:
The server boots to a 500:
Do I have to do something special to get this up and running?
Is the process documented somewhere?
6 Replies
Hi @davestewart. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
Based on the knowledge sources provided, I don't see specific documentation about running the Nuxt UI 3 playground from the GitHub repository. However, I can provide some insights based on the error you're encountering and the configuration patterns shown in the documentation.
The error you're seeing appears to be related to Tailwind CSS v4 configuration in the main.css file. Nuxt UI 3 uses Tailwind CSS v4, which takes a CSS-first configuration approach with directives like
@theme
and @source
.
Here are some suggestions to fix the issue:
1. Make sure you're using the correct branch. The v3 branch of Nuxt UI should be used:
2. The CSS file is trying to use the @source
directive to include files from a parent directory. Try modifying the path in the CSS file to match your project structure:
3. Check if you need to install Tailwind CSS v4, as Nuxt UI 3 depends on it:
4. Make sure your CSS is properly imported in your Nuxt configuration:
The documentation shows that for Nuxt UI Pro, you would need to import Tailwind CSS and Nuxt UI Pro in your CSS file like this:
But since you're working with Nuxt UI (not Pro), the import should be @import "@nuxt/ui";
as shown in your error message.
If you're still encountering issues, you might want to check the Nuxt UI documentation on theming for more details on how to properly configure Tailwind CSS v4 with Nuxt UI.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@350257396503019542> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
OK, the issue is you need to at least run
pnpm build
in the main repo, as the ../../../../
line is referencing the main repo, and if that's not built, the exports
fields in the main package.json
point to a non-existent dist
folder.
It seems this may or may not work.
Subsequent builds are blowing up the console with all kinds of crazy output, mainly to do with the form examples (which are the very elements I want to look at!)
I don't know why Nuxt in particular is always like this.cc @HugoRCD
@davestewart Have you done a
pnpm run dev:prepare
before?Hey Hugo (and Alex!),
Thanks for chiming in!
Ben was kind enough to solve it when I posted an issue.
It turns out the only place that "contribution" is mentioned in the docs is a small side-link that doesn't show in the search, nor was it mentioned in the README (but Ben has added that now 👌):
- https://github.com/nuxt/ui/issues/3757#issuecomment-2766705640
- https://github.com/nuxt/ui/pull/3758
Hopefully this will make it easier for the next guy!