I have an app created with create-react-app that I want to install in a subdirectory on my website. The recommended way is to add process.env.PUBLIC_URL
as the baseurl. ie:
<Route exact path={`${process.env.PUBLIC_URL}/signin`} component={SigninPage}/>
Now is there a way I can set it at the app level so I don't have to duplicate this piece of code on every Routes or Links or NavLinks?
Thanks!