为什么我的Dist文件夹不在项目中,但为什么不存在?

时间:2018-10-30 06:10:47

标签: angular

遇到了这个问题,无法解决。我可能会走哪一步..?帮助

sudo npx ngh --dir=dist/Git-Hub
*** Dist folder does not exist. Check the dir --dir parameter or build the project first!

***发生错误!

  

{[错误:ENOENT:没有这样的文件或目录,请访问   '/ home / benson / Downloads / Angular / Giphy / dist / Git-Hub'] errno:-2,
  代码:“ ENOENT”,系统调用:“访问”,

谢谢。

1 个答案:

答案 0 :(得分:0)

首先运行ng build,然后检查dist文件夹是否存在。如果未添加,则此行

 "outDir": "./dist/out-tsc",

到tsconfig.json文件中的compileOptions。

"compilerOptions": {
    "outDir": "./dist/out-tsc",
  }