Anyone tried to make an application with
dotnet new --install Microsoft.AspNetCore.SpaTemplates::*
dotnet new angular
? like in this example ht
For the sake of clarity, this is what worked for me.
package.json
and update the bootstrap entry to "bootstrap": "4.0.0"
, or whichever version you requirenode_modules
foldernpm install popper.js --save
in command promptnpm install
in command promptwebpack --config webpack.config.vendor.js
in command promptA couple of notes:
npm-shrinkwrap.json
has been heavily modified. I believe this is to do with upgraded versions of npm, but I'm no expert. Here's some further reading on the subject What is the difference between npm-shrinkwrap.json and package-lock.json?I've also put together a working sample of the template on GitHub here https://github.com/alterius/AngularSPABootstrap4