Logo not loading in Angular 2 in a component (Navbar)
navbar component file:
import { Component, OnInit } from '@angular/core';
@Component({
moduleId: module.id,
selector: 'app-navbar',
templateUrl: './navbar.component.html',
styleUrls: ['./navbar.component.css']
})
export class NavbarComponent implements OnInit {
private website:string
private websiteUrl:string
constructor() {
this.website = 'Rakesh'
this.websiteUrl = 'http://google.com'
}
ngOnInit() {
}
}
i add some html code in template file and the logo not loading
my logo code is
<div class="navbar-header">
<a class="navbar-brand" href="{{websiteUrl}}">
*<img src="./logo/rakesh.png" class="img-responsive" alt="Image">*
</a>
</div>
Output in console
moduleId should be a string in "NavbarComponent"
.
my Logo path:
navabar.component.ts
logo/
rakesh.png
Problem maybe comes from
moduleId should be a string in "NavbarComponent"
.As Angular CLI now use Webpack, module.id in Webpack is a number, while Angular expects a string. What you should do is remove the
moduleId
metadata.