Всем добрый вечер, пытаюсь выложить свой проект на github pages
Все сделал как написано здесь -
https://create-react-app.dev/docs/deployment/#gith...
Но у меня просто выводится пустая страница, помогите решить эту проблему.
Может дело в роутинге в react router dom?
function App() {
return (
<Switch>
<Route path="/" exact component={Home} />
<Route path="/searched" component={SearchedPhotosList} />
<Route path="/favorites" component={FavoritesList} />
<Route path="/history" component={SearchHistory} />
<Route path="/:id" component={PhotoPage} />
</Switch>
);
}
export default App;