Having a play round with angular cli https://github.com/angular/angular-cli#documentation
I can create a simple app and view it at localhost.
If I inspect the localhost site I can see the css and js links inserted by webpack.
How are these added when the index.html looks like this
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Wpng</title>
<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>Loading...</app-root>
</body>
</html>
Also I cant see any webpack.config.js in the files so how is webpack used