Home > Software engineering >  React build showing blank page
React build showing blank page

Time:02-26

I am trying to build the react application for the production. Build is showing blank page but with our default background color. Added homepage in package.json as suggested in this question and rebuild.

CodePudding user response:

I face this problem when I'm using Cpanel if you're using Cpanel then using add a .htaccess file and paste this code.

RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
RewriteRule ^ - [L]
RewriteRule ^ ./index.html

  • Related