0
I noticed that from Angular version 4.3 to Angular 6 they removed the file .angular-cli.json, because of this I am including in the main file of the project the index.html, but the Font-Awesome import is not working, someone would have a suggestion?
index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Blog</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="../node_modules/font-awesome/css/font-awesome.css">
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>
</body>
</html>
At angular 6 the configuration file was renamed to angular.json but still works the same way.
– Eduardo Vargas
Manage to solve the problem thanks to your suggestion, can put your answer to I mark as right. thank you very much.
– wladyband