A bare minimum Angular setup using webpack 2
Wanted to learn and understand how to setup an Angular project using webpack, but every starter or seed out there was too overwhelming and contain a lot of bloat for someone who just started with webpack.
So hopefuly others in the same situation as me could find this example helpful.
- Clone
- Install -
yarn install
ornpm install
- Build -
yarn build
ornpm run build
- build folder isdist/
- Run -
yarn start
ornpm start
and browse tohttp://localhost:8080/
in your favorite browser.