Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
fix(index): use relative for base href
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Reed committed Nov 17, 2020
1 parent d61a348 commit df0ef01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const routes: Routes = [
];
@NgModule({
imports: [
RouterModule.forRoot(routes, { useHash: true, preloadingStrategy: PreloadAllModules })
RouterModule.forRoot(routes, { useHash: true, preloadingStrategy: PreloadAllModules, relativeLinkResolution: 'legacy' })
],
exports: [RouterModule]
})
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<title>Blases Loaded</title>

<base href="/" />
<base href="./" />

<meta name="description" content="A mobile app for watching live Blaseball games and viewing standings.">
<meta name="color-scheme" content="light dark" />
Expand Down

0 comments on commit df0ef01

Please sign in to comment.