mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
607deb31dc
Mainly leave shadow-cljs for build cljs stuff and use esbuild for bundle all js dependencies, completly avoiding all possible incompatibility issues between js libraries and google closure compiler.
7 lines
142 B
JavaScript
7 lines
142 B
JavaScript
if (!('dynamicImport' in globalThis)) {
|
|
globalThis.dynamicImport = function(uri) {
|
|
return import(uri);
|
|
}
|
|
};
|
|
|
|
var global = globalThis;
|