Ionic Serve throws a Type-Error: Appscripts.serve

Ionic Serve throws a Type-Error: Appscripts.serve

我最近克隆了一个项目,当我尝试为它提供服务时,出现错误:TypeError: AppScripts.serve is not a function

我应该如何解决这个问题issue/where?

我已经尝试更新 ionic,并重新安装所有插件(以防万一)。

如能提供帮助,我们将不胜感激!

这与我在更新 Ionic 3 时尝试为旧项目提供服务时的情况相同,都会出现类似的错误,但是当再次启动新项目时它会运行良好

执行这条命令:

npm install --save-dev @ionic/app-scripts@latest

之后您的应用应该可以使用

ionic serve

运行 这个命令对我有用

npm install --save-dev @ionic/app-scripts@latest

然后是

ionic serve

当我开始使用 ionic 3 开发旧的 ionic 2 项目时,我遇到了同样的问题。 按照以下步骤对我有用:

npm cache clear

delete the node-modules folder

npm install

npm install --save-dev @ionic/app-scripts@latest

ionic serve