How long do builds usual…

less than 1 minute read

How long do builds usually take? I just started working on an NX project with an Express and React/Redux app and my builds on Netlify (for the React app) are taking as long as 7 minutes. I’m also seeing this message: “WARNING in budgets, maximum exceeded for initial. Budget 2 MB was exceeded by 1.87 MB.” What should I be doing to resolve that?

Responses:

You probably should be introducing some code splitting. As well as breaking your app up more into libraries

https://webpack.js.org/guides/code-splitting/

Since the nx react project just uses webpack under the hood

Updated: