不幸的是,我无法在GitHub页面上的React JS中将我的颜色识别应用程序部署在GitHub上。我正在将Webpack用作捆绑程序。
nextbtn.addEventListener(MouseEvent.CLICK, nextClick);
function nextClick(event:MouseEvent):void {
//MovieClip(this.root).nextScene();
gotoAndStop(1, "Scene 4");
//nextScene();
//MovieClip(root).gotoAndPlay(1, "Scene 4");
}
我使用Clarifai和Gsap额外添加的依赖项,并使用以下步骤:
我在Github帐户上创建了不带md文件的颜色识别库,并且在添加的gh-pages分支内,并且在“源”下的存储库设置中创建了gh-pages分支。
git add。
git commit -m“上传文件”
git push -f origin master:gh-pages
git远程添加原点 https://github.com/Geeeva/Color-recognition.git npm运行部署
该页面应已部署,但不能部署,出现以下错误。我想放置可见的项目演示。 在色彩识别的主分支上尝试了相同的步骤,并且得到了相同的错误。
错误如下:
My system configuration is:
Webpack
Environment:
OS: Windows 10
Node: 8.12.0
Yarn: Not Found
npm: 6.4.1
Watchman: Not Found
Xcode: N/A
Android Studio: Not Found
Packages: (wanted => installed)
react: ^16.5.2 => 16.5.2
react-dom: ^16.5.2 => 16.5.2
react-scripts: 1.1.5 => 1.1.5
到我的Github存储库的链接是:https://github.com/Geeeva/Color-recognition
答案 0 :(得分:0)
我设法通过设置git config用户名和电子邮件来修复它。 (如 上面提供的链接指定了两者的需求。
所以只需在终端中输入:
git config --global user.name您的名字
git config --global user.email @youremail
来源:https://www.reddit.com/r/reactjs/comments/9hlin1/unable_to_deploy_react_app_to_github_pages/