当我们为应用程序提供服务时如何修复离子应用程序错误
how to fix ionic application error when we serve the application
当我们 运行 这个命令 (ionic lab) 然后它显示这个错误。
我们如何解决它..
ng run app:serve --host=0.0.0.0 --port=8100
[ng] The run command requires to be run in an Angular project, but a project definition could not be found.
[ERROR] ng has unexpectedly closed (exit code 1).
The Ionic CLI will exit. Please check any output above for error details.
您似乎不在正确的文件夹中。您必须 运行 您的 ng run
命令位于您 运行 与您的 ng new
命令相同的位置(或者您初始化 Angular 项目的任何位置)。
如果您在包含 package.json 和 运行 以下命令的目录中,请检查命令行:
npm install
ionic serve
当我们 运行 这个命令 (ionic lab) 然后它显示这个错误。 我们如何解决它..
ng run app:serve --host=0.0.0.0 --port=8100
[ng] The run command requires to be run in an Angular project, but a project definition could not be found.
[ERROR] ng has unexpectedly closed (exit code 1).
The Ionic CLI will exit. Please check any output above for error details.
您似乎不在正确的文件夹中。您必须 运行 您的 ng run
命令位于您 运行 与您的 ng new
命令相同的位置(或者您初始化 Angular 项目的任何位置)。
如果您在包含 package.json 和 运行 以下命令的目录中,请检查命令行:
npm install
ionic serve