Maximizing Your Angular Build Performance with ESBUILD

Photo by Sammy Wong on Unsplash

Maximizing Your Angular Build Performance with ESBUILD

Boosting Your Angular Build Speed with ESBUILD

ยท

1 min read

Table of contents

No heading

No headings in the article.

ESBuild is a swift JavaScript compiler used for ViteJS. You can play with him in Angular, changing a single line in the angular.json file.

Note: It is in experimental mode ๐Ÿ˜œ

Change the builder from "@angular-devkit/build-angular:browser" to "@angular-devkit/build-angular:browser-esbuild".

  "build": {
          "builder": "@angular-devkit/build-angular:browser-esbuild",
          "options": {

Run ng build again leave in the comment how fast it is. In my small project gets `59.72 %` faster. OMG!!!!!!!

But if you want to read more about speed Angular checkout:

Happy Coding :)

ย