Hi,
I have deployed my ReactJs project on netlify but site is showing as ": “You need to enable javascript to run this app.”
Please help!
Thanks for your help
Hi,
I have deployed my ReactJs project on netlify but site is showing as ": “You need to enable javascript to run this app.”
Please help!
Thanks for your help
If you look in Developer Tools Console you’ll see numerous files are not found.
One of those URLs is
https://my-port-folio-net.netlify.app/scaling-octo-enigma/static/js/main.c305182e.js
This here is the /scaling-octo-enigma
because the site is hosted at the domain root not the sub-path specified. If you read the CRA Deployment documentation you’d note that setting the homepage
via the package.json
is not required in most instances and is the cause of the issue in this instance.
Remove the homepage field from the file and redeploy.
Thanks for your help
It is working now.