I noticed that from version Angular 4.3 to Angular 6 they removed the .lang-cli.json file, because of this I am including in the main project file the index.html , but importing Font-Awesome is not working, would anyone 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>