Webpack v4 Boilerplate
Plain webpack 4 boilerplate with Babel, SASS and webpack-dev-server on board.
git clone https://github.com/bigstepdenmark/webpack4-boilerplate.git
Install dependencies.
npm install
Build the current application.
# Development
npm run build:dev
# Production
npm run build:prod
Run the local webpack-dev-server. This command will start a server instance and begin listening for connections from localhost on port 9900.
npm run serve