From 83b543b6862194a6d99d05cbfd2d450b35809f12 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier <contact@jbpasquier.eu> Date: Wed, 11 Dec 2024 16:08:00 +0100 Subject: [PATCH] hotfix: force core 0.19 as fallback --- src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.js b/src/utils.js index 2cf7bec..198b36a 100644 --- a/src/utils.js +++ b/src/utils.js @@ -17,7 +17,7 @@ export function path() { export function coreVersion() { let coreUrl = - "https://cdn.jsdelivr.net/npm/@startinblox/core@latest/dist/index.js"; + "https://cdn.jsdelivr.net/npm/@startinblox/core@0.19/dist/index.js"; if (window.orbit) { let core = window.orbit.npm.find((e) => e.package == "@startinblox/core"); coreUrl = `https://cdn.jsdelivr.net/npm/@startinblox/core@${core.version}/dist/index.js`; -- GitLab