I am getting Not Found error when i am hard reloading the page but it works fine i do normal reload with build .Here is my Router tag. I did not use createBrowserHistory. Is it the issue?
<Router basename={process.env.PUBLIC_URL}>
<Switch >
<div >
<Navbar />
<Route exact path="/" component={HomeComponent} />
<Route exact path="/score/:id" component={ScoreComponent} />
<Route exact path="/login" component={LoginComponent} />
<Route exact path="/forgotPassword" component={ForgotPasswordComponent} />
</div>
</Switch >
</Router>