N
Nuxt2mo ago
oneeach

Nuxt UI not rendering css correctly on build

When I run dev locally, the CSS for Nuxt UI looks fine. However, when I build the image and deploy, some of the CSS is not loaded. I don't get any error messages either. I'm using latest version of Nuxt (3.15.4) and UI (2.21.0) I've attached two images to show the toggle is only shown on local/develop but missing on build/production.
No description
No description
3 Replies
kapa.ai
kapa.ai2mo ago
Hi @oneeach. 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 information provided in the knowledge sources, there isn't enough specific information to directly address your issue with Nuxt UI CSS not rendering correctly on build. However, I can provide some insights and suggestions based on related information: 1. CSS Inlining: Nuxt 3 has changed how it handles CSS inlining. As mentioned in the Upgrade Guide, Nuxt now only inlines styles for Vue components, not global CSS. This change might affect how your CSS is loaded in production. 2. Build Process: Make sure you're running the correct build command. Use nuxt build for production builds, as described in the preview command documentation. 3. Environment Variables: Ensure that your environment variables are set correctly for production. The preview command documentation notes that in production, you need to set environment variables yourself. 4. Edge Release: If you're using the latest updates, consider checking if you're using the edge release of Nuxt UI. The Edge installation guide provides instructions on how to use the latest updates. 5. CSS Preload Errors: There's a known issue with CSS preload errors in Nuxt 3, as discussed in this GitHub issue. While this might not be directly related to your problem, it's worth checking if you're experiencing any silent CSS loading errors. 6. Output Directory: Check the .output directory after building your application. As mentioned in the .output directory documentation, this is where Nuxt creates the production build. To troubleshoot further: 1. Verify that all Nuxt UI components are imported correctly. 2. Check your nuxt.config.ts file for any CSS-related configurations. 3. Try running a build locally and serving it with nuxt preview to see if the issue persists. 4. Use browser developer tools to check for any CSS loading errors in the production environment. If the problem persists, you might want to create a minimal reproduction of the issue and seek help on the Nuxt GitHub repository or community forums. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai2mo ago
<@341102284580847616> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
oneeach
oneeachOP2mo ago
I tried to set inlineStyles: false in my nuxt.config.ts but it doesn't have an affect. This is using a docker container to run the application my issue was corrected by adding the line RUN npm run postinstall right before RUN npm run build in my dockerfile.

Did you find this page helpful?