What is a build tool and why do we need it?
Although google does hold it's answers, it still confuses me and i couldn't find a simple explanation, What is a Build tool for example (Vite) and why do we need it?
2 Replies
Build tools allow for code compilation and minification. Also to use preprocessors such as SCSS, postCSS, html templating, UI frameworks, and more tooling or configuration of out put. Vite is another layer that brings a consistent dev environment with hot module reloading. While also making tooling with plugins easier.
Also for future reference posts like this are best suited for #discussions probably
thank you for your answer.