I am stuck in a situation here. I am getting an error like this.
compiler.es5.js:1694 Uncaught Error: Unexpected value \'LoginComponent\' declared by the modul
I had a component declared without the styleUrls property, like this:
@Component({
selector: 'app-server',
templateUrl: './server.component.html'
})
instead of:
@Component({
selector: 'app-server',
templateUrl: './server.component.html',
styleUrls: ['./server.component.css']
})
Adding in the styleUrls property solved the issue.