Boa noite professor, estou com um problema, pois criei os arquivos exatamente como pede nas aulas, porém ao rodar o server, ele não está renderizado o template e está apenas mostrando o caminho do template assim: ./app/app.component.html.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule {
}
<!doctype html>
<html>
<head>
<title>Alurapic</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap-theme.min.css">
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
System
.import('app')
.catch(function(err){
console.error(err);
});
</script>
</head>
<body>
<app>Carregando...</app>
</body>
</html>