Как обслуживать изображения в Angular2?

Я пытаюсь указать относительный путь к одному из моих изображений в папке ресурсов в теге src для изображений в приложении Angular2. Я установил переменную в своем компоненте 'fullImagePath' и использовал ее в своем шаблоне. Я пробовал много разных возможных путей, но, похоже, просто не могу поднять свой образ. Есть ли какой-то особый путь в Angular2, который всегда относительно статической папки, как в Django?

Составная часть

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-hero',
  templateUrl: './hero.component.html',
  styleUrls: ['./hero.component.css']
})

export class HeroComponent implements OnInit {
  fullImagePath: string;

  constructor() {
    this.fullImagePath = '../../assets/images/therealdealportfoliohero.jpg'
  }

  ngOnInit() {
  }

}

Я также поместил изображение в ту же папку, что и этот компонент, поэтому, поскольку шаблон и css в той же папке работают, я не уверен, почему не работает аналогичный относительный путь к изображению. Это тот же компонент с изображением в той же папке.

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-hero',
  templateUrl: './hero.component.html',
  styleUrls: ['./hero.component.css']
})

export class HeroComponent implements OnInit {
  fullImagePath: string;

  constructor() {
    this.fullImagePath = './therealdealportfoliohero.jpg'
  }

  ngOnInit() {
  }

}

HTML

<div class="row">
    <div class="col-xs-12">
        <img [src]="fullImagePath">
    </div>
</div>

дерево приложений * Я оставил папку узловых модулей для экономии места

├── README.md
├── angular-cli.json
├── e2e
│&nbsp;&nbsp; ├── app.e2e-spec.ts
│&nbsp;&nbsp; ├── app.po.ts
│&nbsp;&nbsp; └── tsconfig.json
├── karma.conf.js
├── package.json
├── protractor.conf.js
├── src
│&nbsp;&nbsp; ├── app
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── app.component.css
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── app.component.html
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── app.component.spec.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── app.component.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── app.module.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── hero
│&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; ├── hero.component.css
│&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; ├── hero.component.html
│&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; ├── hero.component.spec.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; ├── hero.component.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; └── portheropng.png
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── index.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; └── shared
│&nbsp;&nbsp; │&nbsp;&nbsp;     └── index.ts
│&nbsp;&nbsp; ├── assets
│&nbsp;&nbsp; │&nbsp;&nbsp; └── images
│&nbsp;&nbsp; │&nbsp;&nbsp;     └── therealdealportfoliohero.jpg
│&nbsp;&nbsp; ├── environments
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── environment.dev.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── environment.prod.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; └── environment.ts
│&nbsp;&nbsp; ├── favicon.ico
│&nbsp;&nbsp; ├── index.html
│&nbsp;&nbsp; ├── main.ts
│&nbsp;&nbsp; ├── polyfills.ts
│&nbsp;&nbsp; ├── styles.css
│&nbsp;&nbsp; ├── test.ts
│&nbsp;&nbsp; ├── tsconfig.json
│&nbsp;&nbsp; └── typings.d.ts
└── tslint.json