mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-19 07:19:58 +00:00
refactor: move meta to nuxt config
This commit is contained in:
parent
aca6f16245
commit
72e03f8109
2 changed files with 3 additions and 3 deletions
|
@ -44,8 +44,5 @@ export function setupPageHeader() {
|
||||||
},
|
},
|
||||||
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${isDev ? ' (dev)' : isPreview ? ' (preview)' : ''}`,
|
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${isDev ? ' (dev)' : isPreview ? ' (preview)' : ''}`,
|
||||||
link,
|
link,
|
||||||
meta: [
|
|
||||||
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent' },
|
|
||||||
],
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -129,6 +129,9 @@ export default defineNuxtConfig({
|
||||||
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
|
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
|
||||||
{ rel: 'apple-touch-icon', href: '/apple-touch-icon.png' },
|
{ rel: 'apple-touch-icon', href: '/apple-touch-icon.png' },
|
||||||
],
|
],
|
||||||
|
meta: [
|
||||||
|
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent' },
|
||||||
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
colorMode: { classSuffix: '' },
|
colorMode: { classSuffix: '' },
|
||||||
|
|
Loading…
Reference in a new issue