I'm trying to implement an Admin Template I used in my classic PHP application in a new Angular project.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" type="image/png" sizes="16x16" href="/plugins/images/favicon.png">
<title>Ample Admin Template - The Ultimate Multipurpose admin template</title>
<link href="/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/plugins/bower_components/sidebar-nav/dist/sidebar-nav.min.css" rel="stylesheet">
<link href="/css/animate.css" rel="stylesheet">
<link href="/css/style.css" rel="stylesheet">
<link href="/css/colors/blue-dark.css" id="theme" rel="stylesheet">
</head>
<body>
<app-root></app-root>
</body>
</html>
The application is properly rendered by now I have some questions:
- How can I include these CSS/JS package (and all the dependencies) in an Angular distribution?
- What is the proper way to includes external CSS/libraries in Angular?