Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.6:install-node-and-npm (install node and npm) on project tdpco-web-app-ui: Could not download Node.js: Got error code 404 from the server. -> [Help 1]
解决方案:
修改com.github.eirslett插件版本为1.11.0以上
https://github.com/eirslett/frontend-maven-plugin/issues/857
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.11.0</version>
问题2:
no such file or directory, scandir ‘/Users/zyc/codes/github/ambari/contrib/views/files/src/main/resources/ui/node_modules/node-sass/vendor’
解决方法:
npm update
npm install
node node_modules/node-sass/scripts/install.js
npm rebuild node-sass
或者
npm install node-sass --force
或者
npm rebuild node-sass --force
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/13937.html