|
@@ -140,6 +140,20 @@ const router = new VueRouter({
|
|
lofig.folder = "../config/default.json";
|
|
lofig.folder = "../config/default.json";
|
|
|
|
|
|
(async () => {
|
|
(async () => {
|
|
|
|
+ lofig.fetchConfig().then(config => {
|
|
|
|
+ const { configVersion, skipConfigVersionCheck } = config;
|
|
|
|
+ if (
|
|
|
|
+ configVersion !== REQUIRED_CONFIG_VERSION &&
|
|
|
|
+ !skipConfigVersionCheck
|
|
|
|
+ ) {
|
|
|
|
+ // eslint-disable-next-line no-alert
|
|
|
|
+ alert(
|
|
|
|
+ "CONFIG VERSION IS WRONG. PLEASE UPDATE YOUR CONFIG WITH THE HELP OF THE TEMPLATE FILE AND THE README FILE."
|
|
|
|
+ );
|
|
|
|
+ window.stop();
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
const websocketsDomain = await lofig.get("websocketsDomain");
|
|
const websocketsDomain = await lofig.get("websocketsDomain");
|
|
ws.init(websocketsDomain);
|
|
ws.init(websocketsDomain);
|
|
|
|
|
|
@@ -177,20 +191,6 @@ lofig.folder = "../config/default.json";
|
|
);
|
|
);
|
|
});
|
|
});
|
|
|
|
|
|
- lofig.fetchConfig().then(config => {
|
|
|
|
- const { configVersion, skipConfigVersionCheck } = config;
|
|
|
|
- if (
|
|
|
|
- configVersion !== REQUIRED_CONFIG_VERSION &&
|
|
|
|
- !skipConfigVersionCheck
|
|
|
|
- ) {
|
|
|
|
- // eslint-disable-next-line no-alert
|
|
|
|
- alert(
|
|
|
|
- "CONFIG VERSION IS WRONG. PLEASE UPDATE YOUR CONFIG WITH THE HELP OF THE TEMPLATE FILE AND THE README FILE."
|
|
|
|
- );
|
|
|
|
- window.stop();
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
-
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
router.beforeEach((to, from, next) => {
|
|
if (window.stationInterval) {
|
|
if (window.stationInterval) {
|
|
clearInterval(window.stationInterval);
|
|
clearInterval(window.stationInterval);
|