mirror of
https://github.com/navidrome/navidrome.git
synced 2026-02-02 06:24:14 +00:00
This makes the version info updated with a browser refresh (no need to logout and login again)
22 lines
347 B
JavaScript
22 lines
347 B
JavaScript
const defaultConfig = {
|
|
version: 'dev',
|
|
firstTime: false,
|
|
baseURL: '',
|
|
loginBackgroundURL: 'https://source.unsplash.com/random/1600x900?music'
|
|
}
|
|
|
|
let config
|
|
|
|
try {
|
|
const appConfig = JSON.parse(window.__APP_CONFIG__)
|
|
|
|
config = {
|
|
...defaultConfig,
|
|
...appConfig
|
|
}
|
|
} catch (e) {
|
|
config = defaultConfig
|
|
}
|
|
|
|
export default config
|