We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10a73f8 commit 984c794Copy full SHA for 984c794
org.knime.python3.scripting.nodes/js-src/src/main.ts
@@ -4,8 +4,6 @@ import { Consola, LogLevels } from "consola";
4
import { init, initMocked } from "@knime/scripting-editor";
5
import { LoadingApp } from "@knime/scripting-editor/loading";
6
7
-import App from "@/components/App.vue";
8
-
9
import { initPython } from "./init";
10
11
const setupConsola = () => {
@@ -34,6 +32,8 @@ if (import.meta.env.MODE === "development.browser") {
34
32
initPython();
35
33
}
36
+const App = (await import("@/components/App.vue")).default;
+
37
// Unmount loading app and mount the main app
38
loadingApp.unmount();
39
createApp(App).mount("#app");
0 commit comments