我使用create-react-app来设置所有内容。
我能够在激增时获得它的实时版本。
我现在想将它添加到由Bluehost托管的个人网站上。
我需要使用FTP客户端上传它。
https://codingforkids.us/projects/joesprojects/ravenous/
这是运行npm run build并将build文件夹的内容放入FTP客户端的结果。该页面是空白的。
这是关于Surge的应用程序:http://ambiguous-afternoon.surge.sh/
答案 0 :(得分:0)
答案 1 :(得分:0)
最可能的问题是,在进行构建之前,需要将.htaccess文件添加到公共目录中。
Check out the React article on deployment
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]
还要确保已在manifest.json中设置了URL(也在公共场所)
您可能还需要对网站进行硬刷新。