Reputation: 4574
There are so many new things in webpack 4 that i can't list them all like Webpack is so fast up to 98% with less configuration. In Visual Studio 2017 with dot net core + angular 4, they had the webpack in the template but yesterday i have created a new project in VS 2017 with Dot net core 2.1 + angular and i did not found any thing related to webpack. A question roaming in my head that why VS 2017 template has no webpack? Does VS use webpack internally or is there any other methodology better than webpack to build the application?
Upvotes: 1
Views: 1180
Reputation: 2592
VS doesn't use web pack internally but angular application use web pack internally and angular-cli is always use latest version of web pack. Just take a look of official github repo https://github.com/angular/angular-cli.
Upvotes: 3