mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-14 19:20:37 +03:00
59 lines
1.5 KiB
JavaScript
59 lines
1.5 KiB
JavaScript
// These defaults are only used in development mode. When bundled in the app,
|
|
// the __APP_CONFIG__ object is dynamically filled by the ServeIndex function,
|
|
// in the /server/app/serve_index.go
|
|
const defaultConfig = {
|
|
version: 'dev',
|
|
firstTime: false,
|
|
baseURL: '',
|
|
variousArtistsId: '03b645ef2100dfc42fa9785ea3102295', // See consts.VariousArtistsID in consts.go
|
|
// Login backgrounds from https://unsplash.com/collections/1065384/music-wallpapers
|
|
loginBackgroundURL: 'https://source.unsplash.com/collection/1065384/1600x900',
|
|
maxSidebarPlaylists: 100,
|
|
enableTranscodingConfig: true,
|
|
enableDownloads: true,
|
|
enableFavourites: true,
|
|
losslessFormats: 'FLAC,WAV,ALAC,DSF',
|
|
welcomeMessage: '',
|
|
gaTrackingId: '',
|
|
devActivityPanel: true,
|
|
enableStarRating: true,
|
|
defaultTheme: 'Dark',
|
|
defaultLanguage: '',
|
|
defaultUIVolume: 100,
|
|
enableUserEditing: true,
|
|
enableSharing: true,
|
|
shareURL: 'http://127.0.0.1:4533',
|
|
defaultDownloadableShare: true,
|
|
devSidebarPlaylists: true,
|
|
lastFMEnabled: true,
|
|
listenBrainzEnabled: true,
|
|
enableExternalServices: true,
|
|
enableCoverAnimation: true,
|
|
devShowArtistPage: true,
|
|
enableReplayGain: true,
|
|
defaultDownsamplingFormat: 'opus',
|
|
publicBaseUrl: '/share',
|
|
}
|
|
|
|
let config
|
|
|
|
try {
|
|
const appConfig = JSON.parse(window.__APP_CONFIG__)
|
|
config = {
|
|
...defaultConfig,
|
|
...appConfig,
|
|
}
|
|
} catch (e) {
|
|
config = defaultConfig
|
|
}
|
|
|
|
export let shareInfo
|
|
|
|
try {
|
|
shareInfo = JSON.parse(window.__SHARE_INFO__)
|
|
} catch (e) {
|
|
shareInfo = null
|
|
}
|
|
|
|
export default config
|