We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey,
is it possible to use habitat() for dynamically imported ES modules like:
habitat()
import habitat from "preact-habitat"; ... const module = await import("/js/module.js"); // module.js is a compiled preact component const { render } = habitat(module);
my use case is that:
I tried:
const modules: Record<Modules, string> = { widget1: "/js/modules/1.js", widget2: "/js/modules/2.js", widget3: "/js/modules/3.js", }; const module = await import(modules[feature]); // feature is "widget1" | "widget2" | "widget3" const { render } = habitat(module.default); // each widget is a bundled preact functional component with default export render({ selector: "..." })
But I keep getting errors a la:
TypeError: Cannot read properties of undefined (reading '__H')
When I import the module directly, it works ofc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey,
is it possible to use
habitat()
for dynamically imported ES modules like:my use case is that:
I tried:
But I keep getting errors a la:
When I import the module directly, it works ofc
The text was updated successfully, but these errors were encountered: