Vite is a bundler orchestrator that help us to manage small to medium scale web application. It's easier to config than other bundlers and a good way to introduce yourself to the world of front end infrastructure. Continue to read how to write Vite plugin.

Why Write Plugins?

As with any technology, sometimes we need some customization of our code and technology. In this case, we'll want to write vite plugins in many cases where we want to change the way that our bundler works, when we want to apply different behavior on build time or when we want to change our code base and how it behaves in different environments.

Let's start

read more