mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-06-08 19:52:50 +02:00
Add: build client as server instead of static
This commit is contained in:
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user