В файле systemjs.config.js отображается «приложение» в папку «dist». Так что, если я пытаюсь ссылаться мой компонент HTML файл относительно, я получаю следующее сообщение об ошибке:Углеродный относительный путь компонента
Не удалось загрузить https://localhost:44337/dist/appComponent.html
Должен ли я использовать глотка, чтобы скопировать HTML файлы в «Dist» папку, а также ? Какие у меня есть другие варианты? Абсолютный путь работает отлично.
Мои system.config.js файл:
(function (global) {
System.config({
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
app: 'dist',
// angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
App.component файл:
import {Component, OnInit} from "@angular/core";
import {Router} from "@angular/router";
@Component({
moduleId: module.id,
selector: "my-app",
templateUrl: "appComponent.html"
})
Спасибо заранее!