Liri S
Liri S
Facing the same issue on Angular 12, using version `1.5.12` worked for me
The only way we found to make this work is to use eval.. ```js eval `import("${url}")` ```
> > The only way we found to make this work is to use eval.. > > eval `import("${url}")` > > Hi [@liriID](https://github.com/liriID) - could you provide an example with...
> [@liriID](https://github.com/liriID) ok but the entire code looks like: `new URL(eval("https://artifacts.acme.com/js/{component-id}/index.js"))` or maybe differently? the entire code would be something like ```ts const componentId = "foo" const url = `https://artifacts.acme.com/js/${componentId}/index.js`...
> Hi @soumik-avoma please try at least doubling the memory of your runner. It happens, that after an OOM event, the runner restarts. And then it tries to create a...
For anyone struggling with this issue, this is my approach in the meantime. add this as `postinstall` script in your `package.json`: ```sh #!/bin/bash # Removes Fingerprint icon from lucide-react to...