javascript – angular-cli ng服务错误
作者:互联网
angular-cli用于完美地工作,但现在我不知道为什么在创建新项目时它不运行服务器.
我尝试重新安装angular-cli.
我使用ng new app创建了一个新应用.
我导航到/ app / path,运行服务,我得到:
No errors
Error: No errors
at validate (C:\Users\Gasti\Documents\Prgm\githubsearch\node_modules\extract-text-webpack-plugin\schema\validator.js:10:9)
at Function.ExtractTextPlugin.extract (C:\Users\Gasti\Documents\Prgm\githubsearch\node_modules\extract-text-webpack-plugin\index.js:188:3)
at C:\Users\Gasti\Documents\Prgm\githubsearch\node_modules\angular-cli\models\webpack-build-styles.js:79:83
at Array.map (native)
at Object.getWebpackStylesConfig (C:\Users\Gasti\Documents\Prgm\githubsearch\node_modules\angular-cli\models\webpack-build-styles.js:76:43)
at new NgCliWebpackConfig (C:\Users\Gasti\Documents\Prgm\githubsearch\node_modules\angular-cli\models\webpack-config.js:44:51)
at Class.run (C:\Users\Gasti\Documents\Prgm\githubsearch\node_modules\angular-cli\tasks\serve-webpack.js:23:22)
at C:\Users\Gasti\Documents\Prgm\githubsearch\node_modules\angular-cli\commands\serve.run.js:37:22
at process._tickCallback (internal/process/next_tick.js:103:7)
解决方法:
This problem arises from a recent update in a external dependency and it’s not fixable without a CLI release right now.
他还确认解决方法是在2.0.0-rc.0版本上安装依赖项:
npm install extract-text-webpack-plugin@2.0.0-rc.0 --save-dev
标签:javascript,angular,angular-cli 来源: https://codeday.me/bug/20190722/1501788.html