1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Remove standalone.js and broken navigation

This commit is contained in:
Bill Thornton 2020-11-26 01:45:23 -05:00
parent 220d00a330
commit 81516c9ffe
3 changed files with 3 additions and 9 deletions

View file

@ -77,12 +77,9 @@ function loadCoreDictionary() {
function init() { function init() {
serverAddress().then(server => { serverAddress().then(server => {
if (!server) { if (server) {
navigate('selectserver.html');
return;
}
ServerConnections.initApiClient(server); ServerConnections.initApiClient(server);
}
}).then(() => { }).then(() => {
console.debug('initAfterDependencies promises resolved'); console.debug('initAfterDependencies promises resolved');

View file

@ -1,3 +0,0 @@
window.appMode = 'standalone';
import('./site');

View file

@ -4,7 +4,7 @@ const merge = require('webpack-merge');
module.exports = merge(common, { module.exports = merge(common, {
mode: 'development', mode: 'development',
entry: './scripts/standalone.js', entry: './scripts/site.js',
devtool: 'source-map', devtool: 'source-map',
module: { module: {
rules: [ rules: [