When I run my application using npm start
, it runs on the root
You can now view my-app in the browser.
Local: http://localhost:3000/
I want to change it so it hits index.html using http://localhost:3000/my-app
and doesn't directly deploy on the root.
I tried adding the homepage
peoperty in package.json
but it still runs on the root.
..
"homepage": "https://localhost:3000/my-app",..