Plain webpack 4 boilerplate with Babel, SASS and webpack-dev-server on board.
- Node.js
- npm
git clone https://github.com/bigstepdenmark/webpack4-boilerplate.gitInstall dependencies.
npm installBuild the current application.
# Development
npm run build:dev
# Production
npm run build:prodRun 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