nuxtjs Articles
Get all nuxtjs tutorials here

How to add common header and footer in Nuxt
Short post on how to add common header and footer component for all your pages in your nuxt application using layouts directory.
Read More
How to add external script tag in head in Nuxt
To add external javascript script in nuxt we have to add the script tag with src in the head() method.
Read More
Convert image to webp in nuxtjs | Image Optimization
To optimize an image in nuxt we have to use the @nuxt/image module. It can convert an image to webp format in nuxt application.
Read More
How to add custom static 404 error page in Nuxt ?
This article is about how to add a custom static 404 page in our nuxt application. 404 error page willbe the fallback page if a page is not found in the static site.
Read More
How to Add Syntax Highlighting PrismJS to Nuxt
This article is about how to add a code syntax highlighter PrismJS to Nuxt and configure PrismJs theme in NuxtJS.
Read More
How to add Google Analytics 4 in Nuxt Application?
This article is about how to add google analytics 4 in our nuxt application. we will see about adding Google Analytics 4 in this article too along with the Universal Id version.
Read More
How to check Nuxt Version Easy and Quick
In this tutotrial, we will see how we can check the nuxt version quickly using the terminal or from the package.json file.
Read More
How To Add Defer And Preload in script and link tags in Nuxtjs Application
This post is about how we can add defer and preload in script and link tags in our nuxtjs application to improve the performance of the pages.
Read More
How to generate sitemap for dynamic routes in nuxtjs application
Here we will create sitemap in nuxtjs application. Learn to generate sitemap for dynamic routes in your nuxt project.
Read More
How To Add Google Font in Nuxt Application
Here in this article we will see how to add google font in nuxtjs application
Read More
How To Add Font Locally In Nuxt App
Add font locally in nuxtjs project, put the font file in assests folder and use @font-face css property to use it in the project.
Read More
How To Add Robots.txt in your Nuxtjs Application
Here in this article we will see how to add robots.txt file in nuxtjs application while building or generating the website.
Read More