我可以在使用 ng build 命令后使用 ng serve 命令吗?

Can I use ng serve command after using ng build command?

我必须在云服务器中部署我的应用程序。为此,我需要 运行 ng build 命令。但是,我还没有在本地机器上完成我的开发。要继续开发和 运行 应用程序,我需要 运行 ng 服务。所以我的问题是,在云环境中部署我的应用程序后,我还能继续我的开发吗?

So my question here is do I able to continue my development after deploying my application in cloud environment?

在 运行 ng build 之后 运行ning ng serve 中不会出现问题。 ng build 只会为您提供 dist 文件夹中的部署文件。

您可以根据需要多次使用 ng serve 继续 运行应用程序。

请通读https://angular.io/guide/deployment