Anyone tried to make an application with
dotnet new --install Microsoft.AspNetCore.SpaTemplates::*
dotnet new angular
? like in this example ht
You can update the bootstrap version in your package.json
like this
"bootstrap": "4.0.0-alpha.6",
and delete your node_modules and do a npm install
again.
That's it. You don't need to touch the webpack.config.vendor.js
because it already referenced the bootstrap css 'bootstrap/dist/css/bootstrap.css',
Whenever you add/remove something in webpack, you need to generate the bundle.
webpack --config webpack.config.vendor.js
And run
webpack
to generate the main bundle. Hope this helps.