N
Nuxt4d ago
Stritixx

Performance problem

Hello everyone! I have created two similar-looking web apps with clear vue.js and nuxt.js. The problem is poor performance on mobile with nuxt.js app which actually have much less content on it. I'm starting with nuxt and I'm a lil bit confused right now. Maybe it's vercel issue? Please check it and lemme know why it works like that. Vue app --> https://ilusioncloudtestokok.vercel.app/ Nuxt app --> https://ilusioncloudv2.vercel.app/ Tip: try to open navbar on mobile (it's so lagging on nuxt app) :nuxt: :vue:
No description
26 Replies
kapa.ai
kapa.ai4d ago
Hi @Stritixx. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- I'll help you troubleshoot the performance issue with your Nuxt app on Vercel, especially the lagging navbar on mobile. Based on the knowledge sources, there are several potential causes for performance issues in Nuxt applications deployed on Vercel: Possible Causes 1. Rendering Mode: Nuxt uses universal rendering by default, which means it renders on the server first and then hydrates on the client. This can sometimes cause performance issues if not optimized properly, especially on mobile devices with limited processing power. Universal rendering has both benefits and downsides. 2. Payload Size: The __NUXT__ payload might be too large, causing performance issues. This is a common problem that can significantly impact mobile performance. Nuxt Performance In Depth discusses this issue specifically. 3. Global Component Registration: If you're registering components globally instead of using Nuxt's auto-imports, this can be a performance killer as mentioned in this video. 4. Lazy Loading: Not using the Lazy prefix for components that aren't immediately needed can impact performance. This video explains when and how to use lazy loading in Nuxt. 5. Vercel Build Environment: There might be specific issues with the Vercel build environment as mentioned in this GitHub issue. Solutions to Try 1. Reduce Payload Size: - Check what data you're storing in your Nuxt payload and try to minimize it - Use shallowReactive for large data objects as mentioned in this PR 2. Optimize Component Loading: - Use the Lazy prefix for components that aren't needed immediately, especially for navbar components - Example: <LazyNavbar /> instead of <Navbar /> 3. Check for Hydration Issues: - Make sure your components don't have hydration mismatches between server and client rendering 4. Consider Client-Side Rendering for UI-Heavy Components: - For interactive components like navbars, you might want to use client-only rendering - You can use the <ClientOnly> component or set specific components to be client-only 5. Check for Watchers and Reactivity Issues: - Ensure you're unsubscribing from watchers when components are unmounted as mentioned in this PR 6. Font Issues: - One interesting issue mentioned in this Stack Overflow post was that the Tajwal font caused performance issues in a Nuxt app. Check if your font choice might be impacting performance. If you're still experiencing issues after trying these solutions, you might want to use browser developer tools to profile your application and identify specific bottlenecks. The Performance tab in Chrome DevTools can help pinpoint exactly what's causing the lag in your navbar animation. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai4d ago
<@1182371805294493877> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
Stritixx
StritixxOP4d ago
Stritixx
StritixxOP4d ago
Perfect example of navbar 1st website - nuxt 2nd - vue
Denish
Denish4d ago
Without looking at code or some traces or something it's hard to tell what's causing the issue
Stritixx
StritixxOP4d ago
Oh sorry for that I forgot to share gh
Stritixx
StritixxOP4d ago
GitHub
GitHub - Stritixx/ilusioncloudv2
Contribute to Stritixx/ilusioncloudv2 development by creating an account on GitHub.
Stritixx
StritixxOP4d ago
There you go
Denish
Denish3d ago
try removing AOS, also, i would not recommend you to use tailwind with any UI library which doesnt use tailwind vuesax injecting base.css which is overriding all the styles from tailwind, (i changed tailwind 3 to tailwind 4 which was casuing lag in my case) AOS and tailwind 3 was causing the lag, all were conflicting each other styles, after migrating to tailwind 4 , the lag seems to be gone in mobile
Stritixx
StritixxOP3d ago
I will try to remove aos But still I'm confused why vue app is not lagging at all
Denish
Denish3d ago
might be because its full SPA
Stritixx
StritixxOP3d ago
Okay. First I will try to remove aos from my project Then will see if it's still lagging
Denish
Denish3d ago
and use eslint to improve code readability and use nuxt-device (https://nuxt.com/modules/device) to detect mobile or not and use v-if to conditionally render navbar for mobile and desktop so that component wont even load\
Nuxt
@nuxtjs/device · Nuxt Modules
Device detection module for Nuxt
Denish
Denish3d ago
use <NuxtLink> instead of <RouterLink>
No description
Stritixx
StritixxOP3d ago
Oh right I forgot to change it while copying from vue app
Denish
Denish3d ago
do not use svg directly for icons, use nuxt/icon (https://github.com/nuxt/icon) and if you want to use svg in you app then dont directly copy-paste svg instead store all your svg in assets/ folder and use nuxt-svgo to use that svg (https://github.com/cpsoinos/nuxt-svgo)
GitHub
GitHub - nuxt/icon: The component, supporting Iconify, Emojis and ...
The component, supporting Iconify, Emojis and custom components. - nuxt/icon
GitHub
GitHub - cpsoinos/nuxt-svgo: SVGO loader for Nuxt
SVGO loader for Nuxt. Contribute to cpsoinos/nuxt-svgo development by creating an account on GitHub.
No description
Stritixx
StritixxOP3d ago
Thanks for so many advices, for sure I will use them
Denish
Denish3d ago
use setup script directly <script setup lang="ts"> and copy paste everything directly from setup() and if you want to change the name of the component then use defineOptions({ name: 'YourComponentNewName' }) inside script setup tag
No description
Denish
Denish3d ago
if this is the only place you are using drop then copy paste all the css in this file only under <style>
No description
Denish
Denish3d ago
you dont need to wrap inside <div> you can add multiple elements on root in app.vue
<template>
<NuxtLayout>
<NuxtPage />
<NuxtLayout>

<div> some content <div>
</template>
<template>
<NuxtLayout>
<NuxtPage />
<NuxtLayout>

<div> some content <div>
</template>
and if your app.vue only contains this
<template>
<NuxtLayout>
<NuxtPage />
<NuxtLayout>
</template>
<template>
<NuxtLayout>
<NuxtPage />
<NuxtLayout>
</template>
then you can delete the app.vue file, its the default
No description
Denish
Denish3d ago
if you want proper SEO support then use this module https://nuxtseo.com/
Nuxt SEO
Nuxt SEO · All-in-one Technical SEO for Nuxt
Nuxt SEO is a collection of hand-crafted Nuxt Modules to help you rank higher in search engines.
Denish
Denish3d ago
you dont need to extract everything into components if usage is only once, (extract into components only if your component is complex or used in multiple places or required lazyily) else you can write there itself only,
No description
Stritixx
StritixxOP3d ago
ok so right now I deleted AOS and vuesax but navbar is still lagging while I'm trying to open it on mobile of course then looks like something is wrong with animation or
Stritixx
StritixxOP3d ago
No description
Stritixx
StritixxOP3d ago
<template>
<Transition name="drop">
<nav class="w-full p-5 z-[1000] min-[850px]:hidden top-0 fixed" v-if="isMobile">
<div class="bg-black/70 border-2 border-gray-900 border-solid rounded-xl backdrop-blur-[10px]">
<div class="w-full h-[100px] text-white font-bold flex justify-between items-center px-[35px]">
<div class="flex items-center text-xl">
<h1>IlusionCloud</h1>
</div>
<span class="cursor-pointer" @click="isMobile = !isMobile">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu"><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg>
</span>
</div>
<ul class="flex flex-col gap-[20px] pl-[45px] mt-2 text-gray-300 pb-12">
<li>Home</li>
<li>Features</li>
<li>Support</li>
<li>Statistics</li>
<li>Dashboard</li>
</ul>
</div>
</nav>
</Transition>
</template>
<template>
<Transition name="drop">
<nav class="w-full p-5 z-[1000] min-[850px]:hidden top-0 fixed" v-if="isMobile">
<div class="bg-black/70 border-2 border-gray-900 border-solid rounded-xl backdrop-blur-[10px]">
<div class="w-full h-[100px] text-white font-bold flex justify-between items-center px-[35px]">
<div class="flex items-center text-xl">
<h1>IlusionCloud</h1>
</div>
<span class="cursor-pointer" @click="isMobile = !isMobile">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu"><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg>
</span>
</div>
<ul class="flex flex-col gap-[20px] pl-[45px] mt-2 text-gray-300 pb-12">
<li>Home</li>
<li>Features</li>
<li>Support</li>
<li>Statistics</li>
<li>Dashboard</li>
</ul>
</div>
</nav>
</Transition>
</template>
Denish
Denish2d ago
use tailwind 4 and remove nuxt tailwind module

Did you find this page helpful?