Updated coincident to use a local channel (#2195)

* Updated coincident to use a local channel
This commit is contained in:
Andrea Giammarchi
2024-09-30 14:03:33 +02:00
committed by GitHub
parent 2642be863b
commit 8de97a7e7b
7 changed files with 48 additions and 28 deletions

View File

@@ -1,10 +1,23 @@
// ⚠️ This file is an artifact: DO NOT MODIFY
export default {
["deprecations-manager"]: () =>
import(/* webpackIgnore: true */ "./plugins/deprecations-manager.js"),
error: () => import(/* webpackIgnore: true */ "./plugins/error.js"),
import(
/* webpackIgnore: true */
"./plugins/deprecations-manager.js"
),
error: () =>
import(
/* webpackIgnore: true */
"./plugins/error.js"
),
["py-editor"]: () =>
import(/* webpackIgnore: true */ "./plugins/py-editor.js"),
import(
/* webpackIgnore: true */
"./plugins/py-editor.js"
),
["py-terminal"]: () =>
import(/* webpackIgnore: true */ "./plugins/py-terminal.js"),
import(
/* webpackIgnore: true */
"./plugins/py-terminal.js"
),
};