December 7th, 2020
Vite's dev server is 10-100x faster than Webpack and Vue CLI. Does this mean Vue CLI is obsolete? In this article, we'll compare the two build tools and address their pros and...
vite vue-cli webpack
December 4th, 2017
Webpack promises great things for Vue developers. But the range of possibilities of Webpack are also why it's so intimidating to learn. In this article, I'll give you a gentle...
webpack vue.js vue-cli
August 20th, 2017
Do you develop your Vue.js app in a lo-fi ES5 environment without cool features like single-file components? Or do you use Webpack and spend forever on config? Brunch is a sim...
vue.js brunch webpack
July 24th, 2017
If we only load the CSS that's useful for the initial page render, our users will see the page quicker. Isolating critical CSS and loading non-critical CSS in idle time is som...
webpack css web performance
July 17th, 2017
Vue.js 2.4.0 has been released this week with a ton of new features, fixes and optimisations. In this article I'll give you a breakdown of four of the most interesting new fea...
vue.js components server-side rendering webpack
July 8th, 2017
Code splitting an app is a great way to improve its initial loading speed and can easily be achieved with Webpack. But where and when do you split your code? In this article I...
vue.js webpack web performance vue-router