Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize nucleify.io
The redirect from /pl/home to /pl/home/ wastes 750ms and delays both FCP and LCP significantly.
Update your Nuxt router configuration to use trailing slashes consistently. Add a redirect rule in nuxt.config.ts using the redirect module or update internal links to point directly to /pl/home/. Configure your server to handle trailing slash redirects at the server level.
A score of 53 falls in the "Needs Improvement" range (50-89). While it is better than poor (0-49), you should aim for 90+ to provide an optimal user experience and maximize SEO benefits.
This site is slower than approximately 35% of similar sites. The main issues affecting performance are image optimization, JavaScript execution time, and layout stability.
Addressing these issues could improve your conversion rate by 15-20% and boost your search engine rankings.
Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
Interaction to Next Paint
Good: < 200ms
Measures how quickly the page responds to user interactions
Cumulative Layout Shift
Good: < 0.1
Measures visual stability - how much content shifts during page load
This Nuxt/Vue site has poor performance with a concerning score of 53/100. The biggest problem is a page redirect that's adding 750ms of unnecessary delay, combined with 171 KiB of unused JavaScript that's wasting another 750ms of load time. Your users are waiting over 14 seconds to see meaningful content (Largest Contentful Paint), which is far too slow for modern web standards. Fixing the redirect issue and removing unused JavaScript from your Nuxt bundles could save over 1.5 seconds and dramatically improve your Core Web Vitals scores.
Why It Matters:
171KB of unused JavaScript delays LCP by 750ms and increases bundle parse time unnecessarily.
How to Fix:
Use Nuxt's built-in code splitting by converting large components to dynamic imports with defineAsyncComponent(). Enable tree-shaking in your build config and remove unused dependencies. Split large chunks like Cx1m70_d.js using dynamic imports for route-based code splitting.
Why It Matters:
214ms of forced reflows block the main thread and degrade user interaction responsiveness.
How to Fix:
Batch DOM reads and writes by reading all geometric properties first, then making style changes. Use CSS transforms instead of changing layout properties. In your Nuxt components, move DOM measurements to requestAnimationFrame callbacks to avoid synchronous reflows.
Once your site is optimized, maintain that speed. Use DeployHQ for zero-downtime, automated deployments—so performance fixes and updates go live safely every time, without breaking your site.
Get AI-powered performance insights with actionable fixes in 30 seconds
More Nuxt Speed Tests
Forced reflows cause 91ms of layout thrashing, degrading user experience and potentially affecting CLS scores.
JavaScript execution blocks the main thread for 2.2 seconds, preventing user interactions and delaying page responsiveness.
Unused JavaScript accounts for 273 KiB of wasted bytes, delaying LCP by 1.35 seconds and blocking page rendering.
Forced reflows cause 82ms of unnecessary layout calculations, degrading user experience and blocking main thread.