Gatsby dynamic routing breaks upon gh-pages deploy
问题 I deployed my first Gatsby project to github pages: repo: https://github.com/michal-kurz/stfuandclick gh-pages: https://michal-kurz.github.io/stfuandclick/app/ (generated from gh-pages branch) It has one page, src/pages/app.tsx , which uses use Reach Router for dynamic routing. // app.tsx const App = () => ( <> <GlobalStyles /> <Provider store={store}> <ThemeProvider theme={theme}> <Router> <Homepage path={`${BASE_URL}/app/`} /> <Team path={`${BASE_URL}/app/team/:teamName/`} /> </Router> <