I have tried to add Angular Material to the spa template from Visual Studio 2017. I added the Angular packages described in the Angular Material guide. I then added the following packages to webpack.config.vendor.js:
'@angular/material',
'@angular/material/prebuilt-themes/deeppurple-amber.css',
After that I ran the following command: webpack --config webpack.config.vendor.js.
Next step I add the modules to app.module.browser.ts as you can see in the image below.
When I run the project there are no errors in the console and the normal html button displays and not the material button.
I found this article online and was also following it: CodeProject Article.
Is there anything else I need to add to get this to work or is there any other tutorial I can follow?
Thanks
