如何在Apache php localhost:8888上运行Angular-CLI项目,而不是-prod版本

时间:2017-06-06 07:28:31

标签: angular angular-cli

我是Angular 2的新手,我正在为Apache php localhost:8888 运行Angular-CLI项目,但我无法做到。我运行服务器,但它运行在localhost:4200,我将所有文件放在 htdogs 目录中,将所有html文件更改为php( index.php ),但仍然不能运行项目。我可以通过 npm start system.config.server.js 来运行Angular项目。请帮帮我:)。

1 个答案:

答案 0 :(得分:0)

在终端中执行以下命令:

ng serve --port 8888

这将命令angular cli用于在指定端口8888上提供服务的lighttpd网络服务器。

您也可以使用速记-p

您可以在official documentation

中找到有关使用cli的更多信息