Please provide us with the following information:
- OS? Windows 7, 8 or 10. Linux (which distribution). Mac OSX (Yosemite? El Capitan?)
Mac OSX (Yosemite)- Versions. Please run
ng --version
. If there's nothing outputted, please run
in a Terminal:node --version
and paste the result here:
angular-cli: 1.0.0-beta.14
node: 6.1.0
os: darwin x64- Repro steps. Was this an app that wasn't created using the CLI? What change did you
do on your code? etc.
This app ran successfully with the latest webpack/angular-cli@latest but it's not loadingapp.component.html
with relative path.
source code:
styleUrls: ['./app.component.scss'],
templateUrl: './app.component.html',
zone.js:1241GET http://localhost:4200/app.component.html 404 (Not Found)
zone.js:344 Unhandled Promise rejection: Failed to load app.component.html ; Zone: <root> ; Task: Promise.then ; Value: Failed to load app.component.html undefined
#### Setup info:
Router : upgraded to rc.7
Webpack: "2.1.0-beta.22"
angular-cli@latest
app/app/component.html
or app/components/...
Thanks! We'll be in touch soon.
Closing this as everything started working with [email protected]
Same here
@TeodorKolev same here in what terms? Just in case, if you are still facing relative path issue, please match the options in src/tsconfig.json
with https://github.com/angular/angular-cli/wiki/Upgrading-from-Beta.10-to-Beta.14#steps-to-migrate src.webpacktemplate/tsconfig.json
@richavyas @TeodorKolev same here!
https://angular.io/docs/ts/latest/cookbook/component-relative-paths.html says that you can do it by add to Component moduleId: module.id. But for webpack they says "Webpack users may prefer an alternative approach (https://angular.io/docs/ts/latest/cookbook/component-relative-paths.html#!#webpack)".
The angular2-template-loader should do the trick but it seems that it's not working. I'll investigate and I let you know if I am able to fix that.
EDIT:
I trace the issue by starting to "debug" angular2-template-loader with console log adding:
console.log("+++++++"+source); just after the function definition.
By doing it I saw that not all the ts file were processed and in particular app.component.ts.
Then I saw in the src folder .js and .map files, so I deleted it and added in the tsconfig.json those properties after compilerOptions (outside it):
"compileOnSave": false,
"buildOnSave": false
Run again npm start and now the application loads successfully.
@TeodorKolev: I cloned your repo, npm install and npm start and replicated the error.
I deleted the .js and .map files created, then added the properties and then npm start again and now it's working.
add module:module.id as a first line in @Component directive.
Was also having this problem and @talhaamin's solution worked for me. Thank you.
Even with module:module.id
i am getting the same error.
Can some one explain me how is this relative path works, and from where the relative path starts basically?
Changing from module:module.id to moduleId: module.id worked for me.
adding module:module.id does not work for me also.
i've tried to apply @dokkis solution, but i do not found .map and .js files under src, in order to delete them
.
@dokkis, can you provide here more help, please ?
thanks
Did you try my solution with moduleId: module.id as you can see
Hi @avuletica,
I've tried also your solution, but if I understood correctly, as long as I have in my project webpack, this solution won't work.
The interesting fact, is that my configuration has previously worked well.
@GabrielSimonMarian you are right, it seems If you are using webpack for bundling then you don't need module.id in decorator. Webpack plugins auto handle (add it) module.id in final bundle, did you check on angular official site:
Nope, does not works at all, the error is still there.
Should the taken into consideration the fact, that I do no use angular-cli ? (the project was implemented without angular-cli, but as I said previously has worked well).
@GabrielSimonMarian Can't tell more without looking at code but you could revert to latest stable configuration (branching) and add that component step by step and see where it breaks
Deleting the .js and .js.map files from the serving directory and setting compileOnSave: false
in tsconfig.json solved the problem for me
adding
moduleId: module.id
in the component decorator worked for me
moduleId: module.id worked for me
Same error. It works if I use app/dashboard.component.html
Same Error : Its work if we start the path from app directory.
for example :
templateUrl: './app/reactive/hero-form-reactive.component.html'
how module:module.id this thing fix issue? Can anybody explain plz
Need to understand logic
@rameshpraja :
I get 404: angular2.dev.js:20736 GET http://localhost:3000/app/contact-form.component.html 404 (Not Found)
even if i give the path from app directory.
@loumorgsy y should we give moduleId: module.id
when i gave it says cannot find module.
Pl let me know. TIA
templateUrl: './menu.component.html'
to
templateUrl: require('./menu.component.html')
works fine for me..
Had the same problem.
Deleting all .map .js files from components/modules/services resolved this issue. Now I have to figure out why the build causes this and how to resolve it.
If anyone has any info on how I solve this by configurations in webpack.common/webpack.config please notify me.
Deleting the .js and .js.map files from the serving directory and setting
compileOnSave: false
in tsconfig.json solved the problem for me
Yup, this also worked for me, thanks!
This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
_This action has been performed automatically by a bot._
Most helpful comment
Changing from module:module.id to moduleId: module.id worked for me.