mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 09:58:18 -07:00
Remove standalone.js and broken navigation
This commit is contained in:
parent
220d00a330
commit
81516c9ffe
@ -77,12 +77,9 @@ function loadCoreDictionary() {
|
||||
|
||||
function init() {
|
||||
serverAddress().then(server => {
|
||||
if (!server) {
|
||||
navigate('selectserver.html');
|
||||
return;
|
||||
if (server) {
|
||||
ServerConnections.initApiClient(server);
|
||||
}
|
||||
|
||||
ServerConnections.initApiClient(server);
|
||||
}).then(() => {
|
||||
console.debug('initAfterDependencies promises resolved');
|
||||
|
||||
|
@ -1,3 +0,0 @@
|
||||
window.appMode = 'standalone';
|
||||
|
||||
import('./site');
|
@ -4,7 +4,7 @@ const merge = require('webpack-merge');
|
||||
|
||||
module.exports = merge(common, {
|
||||
mode: 'development',
|
||||
entry: './scripts/standalone.js',
|
||||
entry: './scripts/site.js',
|
||||
devtool: 'source-map',
|
||||
module: {
|
||||
rules: [
|
||||
|
Loading…
Reference in New Issue
Block a user