If your errors look like the ones above, it has to do with the ":id" section of the <Route path="/details/:id" component={Details} /> in your App.jsx file. I can't tell you why it does this, but inserting <base href="/" /> into your head tag in the index.html file seems to fix the issue.
If your errors look like the ones above, it has to do with the ":id" section of the
<Route path="/details/:id" component={Details} />
in your App.jsx file. I can't tell you why it does this, but inserting<base href="/" />
into your head tag in the index.html file seems to fix the issue.