mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-24 02:36:00 +00:00
21 lines
681 B
JavaScript
21 lines
681 B
JavaScript
import skin from "../skins/base-2.91.wsz";
|
|
import audio from "../mp3/llama-2.91.mp3";
|
|
|
|
/* global SENTRY_DSN */
|
|
|
|
const { hash } = window.location;
|
|
let config = {};
|
|
if (hash) {
|
|
try {
|
|
config = JSON.parse(decodeURIComponent(hash).slice(1));
|
|
} catch (e) {
|
|
console.error("Failed to decode config from hash: ", hash);
|
|
}
|
|
}
|
|
|
|
// Turn on the incomplete playlist window
|
|
export const skinUrl = config.skinUrl === undefined ? skin : config.skinUrl;
|
|
export const audioUrl = config.audioUrl === undefined ? audio : config.audioUrl;
|
|
export const hideAbout = config.hideAbout || false;
|
|
export const initialState = config.initialState || undefined;
|
|
export const sentryDsn = SENTRY_DSN;
|