Skip to main content

How to Build a Dynamic Website from Scratch with WordPress FOR FREE

Are you looking to build a dynamic website from scratch without breaking the bank? WordPress is an excellent choice for creating a powerful and versatile website, and the best part is, it can be done for free. In this article, we will guide you through the step-by-step process of building a dynamic website using WordPress, without any coding knowledge required. Let's get started! Table of Contents Introduction to WordPress Setting Up Your Local Development Environment Installing WordPress Choosing a Theme Customizing Your Website Design Adding Essential Plugins Creating Pages and Navigation Setting Up a Blog Optimizing Your Website for SEO Enhancing Functionality with Plugins Securing Your Website Testing and Launching Your Website Maintaining and Updating Your Website Monetizing Your Website Conclusion 1. Introduction to WordPress WordPress is a popular content management system (CMS) that allows users to create and manage websites easily. It offers a user-friendly interface, a wi...

Node.js version xx.x has reached End-of-Life.

 

error occurred 

After updating the version of the library package being used, the following error message occurred during distribution.

 

Node.js version 16.x has reached End-of-Life. Deployments created on or after 2023-08-15 will fail to build. Please set Node.js Version to 18.x in your Project Settings to use Node.js 18.

Node.js version xx.x has reached End-of-Life.

cause of error

The reason for this error is that the Node.js version in the current distribution environment does not match the currently used Node Version or library packages. 

change version


error resolution

In my case, Vercel is using Node.js Version 16, but after changing Node.js Version to 18 in Vercel, the error was resolved. In the case of Vercel, you can change the node.js version at the bottom of the 'Gerneral' environment, but it has been changed to version 18.

 

How to change Vercel Node.js Version (official document)

https://vercel.com/changelog/node-js-version-now-customizable-in-the-project-settings

Comments

Popular Posts

Understanding next.js useRouter

Understanding next.js useRouter Next.js is a popular framework for building React applications. It provides many features that make developing web applications easier, including client-side routing. One of the key tools in Next.js for handling routing is the  useRouter  hook. In this article, we will explore what  useRouter  is and how it can be used effectively in Next.js applications. 1. Introduction to useRouter The  useRouter  hook is a built-in hook provided by Next.js. It allows us to access and manipulate the current page's routing information. With  useRouter , we can extract data from the URL, handle dynamic routing, process query parameters, and perform page redirection. 2. Benefits of using useRouter Using the  useRouter  hook in Next.js offers several benefits: Simplified routing setup :  useRouter  simplifies the process of setting up routing in Next.js applications. It provides an intuitive interface for handling routi...