How to use Angular 5 like the old school of web?

I'm trying to develop a web application using Angular. Based on our architecture, I need to include Angular and Material as we do with Bootstrap or jQuery or previous versions of Angular JS.

Yet I can't find a way to use Angular that way. All is cli which is not conformant to our platform's requirements and team rules.

Is there a way that I can use Angular and Material like the old days, by referencing them in head section of my HTML file?

Upvotes: 0

Views: 90

Answers (1)

Nenad Drobac
Nenad Drobac

Reputation: 126

No, you can't call Angular like before. You have to install Angular from CLI and then start your project but you can call Materialize in the head. Also, you can install it from npm and import it in .angular.cli.json

Upvotes: -1

Related Questions