This setup uses webpack as the module bundler, Babel for transpiling and comes with Vue.js as the underlying framework which brings…
- Asynchronous loading of components
- Code-splitting to serve only needed files
- Encapsulation of styles aka scoped css
Have fun! ✌️
# install dependencies
npm install
# build for development
npm run build
# build for production
npm run build:prod
# serve with hot reload at localhost:8080
npm run watch
# tests if the javascript files would build without errors
npm run test
For detailed explanation on how things work, consult the docs for vue-loader.