Issue
I am so frustrated in that I ran ng build but it does not produce dist folder in the project folder. I have no problem with other projects. Strange is that compiler does not give any errors. Could someone please check my project and tell the reason? https://github.com/vugar005/Report Kind Regards
Solution
I have seen your repository, and i think the problem is on your ".angular-cli.json"
file. On line 9 you specify outDir
to "../MHS"
and it should produce the result into "../MHS"
folder instead of "dist"
folder.
As a resolution to your problem, you could change the outDir
from "../MHS"
to "dist"
.
Answered By - mczal
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.