From 493b3ca83157ee3bca726bbe9da0059e434b039d Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier <contact@jbpasquier.eu> Date: Wed, 11 Dec 2024 16:10:44 +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 cdb1456..ec59284 100644 --- a/src/utils.js +++ b/src/utils.js @@ -13,7 +13,7 @@ export function path() { } export function coreVersion() { - let coreUrl = "https://cdn.jsdelivr.net/npm/@startinblox/core@latest/dist/index.js"; + let coreUrl = "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