Prep for LCI

This commit is contained in:
Scott Idem
2022-10-16 22:37:40 -04:00
parent 0dce6c89c0
commit fb75d450ac
4 changed files with 46 additions and 186 deletions

View File

@@ -84,10 +84,14 @@ function createWindow () {
// and load the index.html of the app.
if (config.native_app_js_css_option == '' || config.native_app_js_css_option == 'default') {
win.loadFile('app/index.html');
} else if (config.native_app_js_css_option == 'development') {
win.loadFile('app/index_development.html');
} else if (config.native_app_js_css_option == 'development_internal') {
win.loadFile('app/index_development_internal.html');
} else if (config.native_app_js_css_option == 'development_localhost') {
win.loadFile('app/index_development_localhost.html');
} else if (config.native_app_js_css_option == 'onsite') {
win.loadFile('app/index_onsite.html');
} else if (config.native_app_js_css_option == 'onsite_5000') {
win.loadFile('app/index_onsite.html');
} else {
win.loadFile('app/index.html');
}