Add: build client as server instead of static

This commit is contained in:
Aram Becker 2023-05-01 17:56:14 +02:00
parent 883cb46481
commit 31dc10ba51
8 changed files with 715 additions and 43 deletions

10
client/plugins/favicon.js Normal file
View file

@ -0,0 +1,10 @@
export default function ({ $config }) {
const faviconPath = $config.favicon || '/favicon.ico'
const link = document.createElement('link')
link.rel = 'icon'
link.type = 'image/x-icon'
link.href = `${$config.routerBasePath || ''}${faviconPath}`
document.head.appendChild(link)
}