Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
<meta charset="UTF-8" />
<link
rel="icon"
type="image/ico"
href="/favicon.ico"
href="data:,"
/>
<meta
name="viewport"
Expand Down
Binary file removed web/public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion web/src/plugins/router-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const router = createRouter({
})

router.beforeEach(async (to) => {
document.title = to.meta.title ? `${APPLICATION_NAME} - ${to.meta.title}` : APPLICATION_NAME
document.title = to.meta.title ? `${APPLICATION_NAME} : ${to.meta.title}` : APPLICATION_NAME

if (to.meta.requiresAuth === false) return true

Expand Down