Skip to content

Commit

Permalink
fix(meta): global default title (#640)
Browse files Browse the repository at this point in the history
Co-authored-by: Damien Robinson <damien.robinson@xcommedia.com.au>
  • Loading branch information
shadow81627 and damienrobinson committed Sep 29, 2020
1 parent 7892804 commit 61bbcbe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
dark
@click.stop="drawer = !drawer"
/>
<v-toolbar-title class="ml-0 pl-3">
<v-toolbar-title class="ml-0 pl-3 d-flex align-center">
<img
:src="require('~/assets/img/logo.svg?inline')"
class="navbar-brand"
Expand Down
3 changes: 3 additions & 0 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export default {
** Headers of the page
*/
head: {
title: 'Damien Robinson',
titleTemplate: `%s | ${env.APP_NAME}`,
meta: [
{
Expand All @@ -90,7 +91,9 @@ export default {
content: env.VERSION,
},
{
once: true,
property: 'og:title',
content: 'Damien Robinson',
template: `%s | ${env.APP_NAME}`,
hid: 'og:title',
},
Expand Down

1 comment on commit 61bbcbe

@vercel
Copy link

@vercel vercel bot commented on 61bbcbe Sep 29, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.