Temporarily route to /web subdirectory for Pleroma

This commit is contained in:
Alex Gleason 2020-03-30 14:08:10 -05:00
parent dc26e91f08
commit d5ca8444bb
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 2 additions and 2 deletions

View File

@ -52,9 +52,9 @@ class GabSocialMount extends React.PureComponent {
// } // }
return ( return (
<BrowserRouter> <BrowserRouter basename='/web'>
<ScrollContext> <ScrollContext>
<Route path='/' component={UI} /> <Route component={UI} />
</ScrollContext> </ScrollContext>
</BrowserRouter> </BrowserRouter>
); );