mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
Fix Could not resolve "virtual:component-loader"
in gradio/utils package (#8927)
* add catch clause to fix not being able to use newest npm package versions * format * add changeset * add changeset --------- Co-authored-by: Freddy Boulton <alfonsoboulton@gmail.com> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
parent
69f1e36f7d
commit
223688b70a
6
.changeset/rude-women-fly.md
Normal file
6
.changeset/rude-women-fly.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
"@gradio/utils": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Fix `Could not resolve "virtual:component-loader"` in gradio/utils package
|
@ -234,10 +234,14 @@ export class Gradio<T extends Record<string, any> = Record<string, any>> {
|
||||
this.client = client;
|
||||
|
||||
if (!virtual_component_loader) {
|
||||
import("virtual:component-loader").then((module) => {
|
||||
this._load_component = module.load_component;
|
||||
virtual_component_loader = module.load_component;
|
||||
});
|
||||
import("virtual:component-loader")
|
||||
.then((module) => {
|
||||
this._load_component = module.load_component;
|
||||
virtual_component_loader = module.load_component;
|
||||
})
|
||||
.catch((e) => {
|
||||
console.error("Error loading virtual component loader", e);
|
||||
});
|
||||
} else {
|
||||
this._load_component = virtual_component_loader;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user