Muhammed Teuvazhukov
Muhammed Teuvazhukov
Use _**preset**_ layout type with specific X and Y positions.
I have similar issue: `Failed to construct 'Worker': Script at 'webpack://l-video-editor/./node_modules/wasm-imagemagick/dist/src/magick.js' cannot be accessed from origin 'http://localhost:9000'.` Idk how but they get wrong URL for magick.js it can be access...
> This isn't a problem with this repo, it's a problem with how you're using it. As I sad magick.js and magick.wasm available in / directory. I'm using ffmpeg and...
I want to combine native importmaps and shim importmaps, native ones does not support extending import map in runtime. Shim mode affects the performance. So I want to use react,...
@guybedford What I'm doing wrong? ```html window.esmsInitOptions = { shimMode: true, mapOverrides: true, skip: ["react", "reactDOM"] } { "imports": { "react": "https://cdn.jsdelivr.net/npm/@esm-bundle/[email protected]/esm/react.production.min.js", "reactDOM": "https://cdn.jsdelivr.net/npm/@esm-bundle/[email protected]/esm/react-dom.production.min.js" } } // This module is...
### Here is the solution for combining native importmap imports and shim imports: For native importmaps: ```html { "imports": { "react": "https://cdn.jsdelivr.net/npm/@esm-bundle/[email protected]/esm/react.production.min.js", "reactDOM": "https://cdn.jsdelivr.net/npm/@esm-bundle/[email protected]/esm/react-dom.production.min.js" } } ``` And combining native...