我用Visual Studio Code创建了一个简单的React应用程序,并希望将其托管在我使用urge.sh的网站上。当我部署该应用程序并转到该站点时,尽管将其部署到终端中时部署成功,但它仅显示一个空白页面。
这是我执行的步骤:
npm run build
surge
命令我不熟悉使用urge.sh。我可能做错了什么?
答案 0 :(得分:0)
请按照以下步骤解决(仅4次浪涌):
patches.Rectangle()
答案 1 :(得分:0)
您可以将以下内容添加到package.json脚本中-
"scripts": {
...
"deploy": "npm run build && cp build/index.html build/200.html && surge build https://{domain_name}"
}
然后您可以使用npm run deploy
在项目的根目录上(无论何时需要部署)在终端上运行它。